Logger: add a missing string view operator.

This commit is contained in:
Guillaume Jacquemin 2024-04-07 15:10:52 +02:00
parent 8ecd1922f1
commit 1db00ba892
Signed by: williamjcm
SSH Key Fingerprint: SHA256:AYLOg+iTV0ElElnlu4vqM4edFazVdRiuQB0Y5LoKc4A
1 changed files with 1 additions and 1 deletions

View File

@ -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;