diff options
Diffstat (limited to 'common/log.cpp')
-rw-r--r-- | common/log.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/log.cpp b/common/log.cpp index 4606e67..96c6f82 100644 --- a/common/log.cpp +++ b/common/log.cpp | |||
@@ -293,12 +293,12 @@ QDebug Sink::Log::debugStream(DebugLevel debugLevel, int line, const char* file, | |||
293 | if (multiline) { | 293 | if (multiline) { |
294 | output += "\n "; | 294 | output += "\n "; |
295 | } | 295 | } |
296 | output += ": "; | 296 | output += ":"; |
297 | 297 | ||
298 | static DebugStream stream; | 298 | static DebugStream stream; |
299 | QDebug debug(&stream); | 299 | QDebug debug(&stream); |
300 | 300 | ||
301 | debug.noquote().nospace() << output; | 301 | debug.noquote().nospace() << output; |
302 | 302 | ||
303 | return debug; | 303 | return debug.space().quote(); |
304 | } | 304 | } |