X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Flogger.h;h=f5a6ff59af12b2864ab4bb66027707f75a5b26a9;hp=113fc5624e71727c21d421893a5338cbaef6095b;hb=0679f0aa992e4d0d0aab2ebe08e17544150fbc55;hpb=41744a68745db753726243beeee2afe6aa23a87c diff --git a/src/common/logger.h b/src/common/logger.h index 113fc562..f5a6ff59 100644 --- a/src/common/logger.h +++ b/src/common/logger.h @@ -40,9 +40,9 @@ class Logger { ~Logger(); template - inline Logger &operator<<(const T &value) { _stream << value; return *this; } - inline Logger &operator<<(const QStringList & t) { _stream << t.join(" "); return *this; } - inline Logger &operator<<(bool t) { _stream << (t ? "true" : "false"); return *this; } + inline Logger &operator<<(const T &value) { _stream << value << " "; return *this; } + inline Logger &operator<<(const QStringList & t) { _stream << t.join(" ") << " "; return *this; } + inline Logger &operator<<(bool t) { _stream << (t ? "true" : "false") << " "; return *this; } private: void log();