]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/filelogger.cpp
Merge branch 'insp20' into master.
[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
25 FileLogStream::FileLogStream(LogLevel loglevel, FileWriter *fw) : LogStream(loglevel), f(fw)
26 {
27         ServerInstance->Logs->AddLoggerRef(f);
28 }
29
30 FileLogStream::~FileLogStream()
31 {
32         /* FileWriter is managed externally now */
33         ServerInstance->Logs->DelLoggerRef(f);
34 }
35
36 void FileLogStream::OnLog(LogLevel loglevel, const std::string &type, const std::string &text)
37 {
38         static std::string TIMESTR;
39         static time_t LAST = 0;
40
41         if (loglevel < this->loglvl)
42         {
43                 return;
44         }
45
46         if (ServerInstance->Time() != LAST)
47         {
48                 TIMESTR = InspIRCd::TimeString(ServerInstance->Time());
49                 LAST = ServerInstance->Time();
50         }
51
52         this->f->WriteLogLine(TIMESTR + " " + type + ": " + text + "\n");
53 }