]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/filelogger.cpp
Modify the log message to contain the log type.
[user/henk/code/inspircd.git] / src / filelogger.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
5  *   Copyright (C) 2008 Robin Burchell <robin+git@viroteck.net>
6  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
7  *
8  * This file is part of InspIRCd.  InspIRCd is free software: you can
9  * redistribute it and/or modify it under the terms of the GNU General Public
10  * License as published by the Free Software Foundation, version 2.
11  *
12  * This program is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
15  * details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21
22 #include "inspircd.h"
23 #include <fstream>
24 #include "socketengine.h"
25 #include "filelogger.h"
26
27 FileLogStream::FileLogStream(LogLevel loglevel, FileWriter *fw) : LogStream(loglevel), f(fw)
28 {
29         ServerInstance->Logs->AddLoggerRef(f);
30 }
31
32 FileLogStream::~FileLogStream()
33 {
34         /* FileWriter is managed externally now */
35         ServerInstance->Logs->DelLoggerRef(f);
36 }
37
38 void FileLogStream::OnLog(LogLevel loglevel, const std::string &type, const std::string &text)
39 {
40         static std::string TIMESTR;
41         static time_t LAST = 0;
42
43         if (loglevel < this->loglvl)
44         {
45                 return;
46         }
47
48         if (ServerInstance->Time() != LAST)
49         {
50                 time_t local = ServerInstance->Time();
51                 struct tm *timeinfo = localtime(&local);
52
53                 TIMESTR.assign(asctime(timeinfo), 24);
54                 LAST = ServerInstance->Time();
55         }
56
57         this->f->WriteLogLine(TIMESTR + " " + type + ": " + text + "\n");
58 }