Logger: add a missing string view operator.
This commit is contained in:
parent
8ecd1922f1
commit
1db00ba892
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ Logger::log(EntryType type, StringView location, StringView message) {
|
|||
break;
|
||||
}
|
||||
|
||||
d << "["_s << Debug::nospace << location << Debug::nospace << "]";
|
||||
d << "["_s << Debug::nospace << location << Debug::nospace << "]"_s;
|
||||
|
||||
for(auto i = 0u; i < _indentLevel; i++) {
|
||||
d << Debug::nospace << " "_s << Debug::nospace;
|
||||
|
|
Loading…
Reference in a new issue