X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Flogger.h;h=ea5b01be57eee013e6295b3a727a0627ce62aeb7;hp=d9b51a63a44d9fede89534c7551c4cd2ed214567;hb=e3c42d072b2b8f39c8c9ea44dfc3bded87ae43b0;hpb=034708a59ca1ee3195263a90941a2b145c520fef diff --git a/src/common/logger.h b/src/common/logger.h index d9b51a63..ea5b01be 100644 --- a/src/common/logger.h +++ b/src/common/logger.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005 by the Quassel Project * + * Copyright (C) 2005-2013 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,47 +15,58 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #ifndef LOGGER_H #define LOGGER_H -#include "types.h" - -#include #include #include -class Logger { -public: - enum LogLevel { - DebugLevel, - InfoLevel, - WarningLevel, - ErrorLevel - }; +#include "quassel.h" +#include "types.h" - inline Logger(LogLevel level) : _stream(&_buffer, QIODevice::WriteOnly), _logLevel(level) {} - ~Logger(); +class Logger +{ +public: + inline Logger(Quassel::LogLevel level) : _stream(&_buffer, QIODevice::WriteOnly), _logLevel(level) {} + ~Logger(); - static void logMessage(QtMsgType type, const char *msg); + static void logMessage(QtMsgType type, const char *msg); - 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; } + 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; } private: - void log(); - QTextStream _stream; - QString _buffer; - LogLevel _logLevel; + void log(); + QTextStream _stream; + QString _buffer; + Quassel::LogLevel _logLevel; }; -class quInfo : public Logger { + +class quInfo : public Logger +{ public: - inline quInfo() : Logger(Logger::InfoLevel) {} + inline quInfo() : Logger(Quassel::InfoLevel) {} }; + +class quWarning : public Logger +{ +public: + inline quWarning() : Logger(Quassel::WarningLevel) {} +}; + + +class quError : public Logger +{ +public: + inline quError() : Logger(Quassel::ErrorLevel) {} +}; + + #endif