]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/filelogger.cpp
Show a better warning when certtool/openssl are missing.
[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 /* $Core */
23
24 #include "inspircd.h"
25 #include <fstream>
26 #include "socketengine.h"
27 #include "filelogger.h"
28
29 FileLogStream::FileLogStream(int loglevel, FileWriter *fw)
30         : LogStream(loglevel), f(fw)
31 {
32         ServerInstance->Logs->AddLoggerRef(f);
33 }
34
35 FileLogStream::~FileLogStream()
36 {
37         /* FileWriter is managed externally now */
38         ServerInstance->Logs->DelLoggerRef(f);
39 }
40
41 void FileLogStream::OnLog(int loglevel, const std::string &type, const std::string &text)
42 {
43         static char TIMESTR[26];
44         static time_t LAST = 0;
45
46         if (loglevel < this->loglvl)
47         {
48                 return;
49         }
50
51         if (ServerInstance->Time() != LAST)
52         {
53                 time_t local = ServerInstance->Time();
54                 struct tm *timeinfo = localtime(&local);
55
56                 strlcpy(TIMESTR,asctime(timeinfo),26);
57                 TIMESTR[24] = ':';
58                 LAST = ServerInstance->Time();
59         }
60
61         std::string out = std::string(TIMESTR) + " " + text.c_str() + "\n";
62         this->f->WriteLogLine(out);
63 }