Obey naming rules
[quassel.git] / src / common / logger.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005 by the Quassel Project                             *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
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.                                           *
9  *                                                                         *
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.                          *
14  *                                                                         *
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  ***************************************************************************/
20
21 #include "logger.h"
22 #include "global.h"
23
24 #include <QFile>
25 #include <QTextStream>
26 #include <QDateTime>
27
28 Logger::~Logger() {
29   QDateTime date = QDateTime::currentDateTime();
30   if(_stream->logLevel == DebugLevel) _stream->buffer.prepend("Debug: ");
31   else if (_stream->logLevel == InfoLevel) _stream->buffer.prepend("Info: ");
32   else if (_stream->logLevel == WarningLevel) _stream->buffer.prepend("Warning: ");
33   else if (_stream->logLevel == ErrorLevel) _stream->buffer.prepend("Error: ");
34   _stream->buffer.prepend(date.toString("yyyy-MM-dd hh:mm:ss "));
35   log();
36   delete _stream;
37 }
38
39 void Logger::log() {
40   LogLevel lvl;
41   if (Global::parser.value("loglevel") == "Debug") lvl = DebugLevel;
42   else if (Global::parser.value("loglevel") == "Info") lvl = InfoLevel;
43   else if (Global::parser.value("loglevel") == "Warning") lvl = WarningLevel;
44   else if (Global::parser.value("loglevel") == "Error") lvl = ErrorLevel;
45   else lvl = InfoLevel;
46
47   if(_stream->logLevel < lvl) return;
48
49   // if we can't open logfile we log to stdout
50   QTextStream out(stdout);
51   QFile file;
52   if(!Global::parser.value("logfile").isEmpty()) {
53     file.setFileName(Global::parser.value("logfile"));
54     if (file.open(QIODevice::Append | QIODevice::Text)) {
55       out.setDevice(&file);
56       _stream->buffer.remove(QChar('\n'));
57     }
58   }
59   out << _stream->buffer << "\n";
60   if(file.isOpen()) file.close();
61 }