diff --git a/src/Logger/Logger.cpp b/src/Logger/Logger.cpp index b3d9f03..db00e7d 100644 --- a/src/Logger/Logger.cpp +++ b/src/Logger/Logger.cpp @@ -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;