1 /***************************************************************************
2 * Copyright (C) 2005 by the Quassel Project *
3 * devel@quassel-irc.org *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) version 3. *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
25 #include <QTextStream>
29 QDateTime date = QDateTime::currentDateTime();
30 if(_logLevel == DebugLevel) _buffer.prepend("Debug: ");
31 else if (_logLevel == InfoLevel) _buffer.prepend("Info: ");
32 else if (_logLevel == WarningLevel) _buffer.prepend("Warning: ");
33 else if (_logLevel == ErrorLevel) _buffer.prepend("Error: ");
34 _buffer.prepend(date.toString("yyyy-MM-dd hh:mm:ss "));
40 if (Quassel::optionValue("loglevel") == "Debug") lvl = DebugLevel;
41 else if (Quassel::optionValue("loglevel") == "Info") lvl = InfoLevel;
42 else if (Quassel::optionValue("loglevel") == "Warning") lvl = WarningLevel;
43 else if (Quassel::optionValue("loglevel") == "Error") lvl = ErrorLevel;
46 if(_logLevel < lvl) return;
48 // if we can't open logfile we log to stdout
49 QTextStream out(stdout);
51 if(!Quassel::optionValue("logfile").isEmpty()) {
52 file.setFileName(Quassel::optionValue("logfile"));
53 if (file.open(QIODevice::Append | QIODevice::Text)) {
55 _buffer.remove(QChar('\n'));
58 out << _buffer << endl;
59 if(file.isOpen()) file.close();
63 void Logger::logMessage(QtMsgType type, const char *msg) {
66 Logger(Logger::DebugLevel) << msg;
69 Logger(Logger::WarningLevel) << msg;
72 Logger(Logger::ErrorLevel) << msg;
75 Logger(Logger::ErrorLevel) << msg;
76 Quassel::logFatalMessage(msg);