1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2013-2014 Sadie Powell <sadie@witchery.services>
5  *   Copyright (C) 2013 Attila Molnar <attilamolnar@hush.com>
6  *   Copyright (C) 2012 Robby <robby@chatbelgie.be>
7  *   Copyright (C) 2009 Uli Schlachter <psychon@inspircd.org>
8  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
9  *   Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
10  *   Copyright (C) 2008 Robin Burchell <robin+git@viroteck.net>
11  *   Copyright (C) 2007, 2010 Craig Edwards <brain@inspircd.org>
12  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
13  *
14  * This file is part of InspIRCd.  InspIRCd is free software: you can
15  * redistribute it and/or modify it under the terms of the GNU General Public
16  * License as published by the Free Software Foundation, version 2.
17  *
18  * This program is distributed in the hope that it will be useful, but WITHOUT
19  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
20  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
21  * details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
25  */
26 
27 
28 #include "inspircd.h"
29 #include <fstream>
30 
FileLogStream(LogLevel loglevel,FileWriter * fw)31 FileLogStream::FileLogStream(LogLevel loglevel, FileWriter *fw) : LogStream(loglevel), f(fw)
32 {
33 	ServerInstance->Logs->AddLoggerRef(f);
34 }
35 
~FileLogStream()36 FileLogStream::~FileLogStream()
37 {
38 	/* FileWriter is managed externally now */
39 	ServerInstance->Logs->DelLoggerRef(f);
40 }
41 
OnLog(LogLevel loglevel,const std::string & type,const std::string & text)42 void FileLogStream::OnLog(LogLevel loglevel, const std::string &type, const std::string &text)
43 {
44 	static std::string TIMESTR;
45 	static time_t LAST = 0;
46 
47 	if (loglevel < this->loglvl)
48 	{
49 		return;
50 	}
51 
52 	if (ServerInstance->Time() != LAST)
53 	{
54 		TIMESTR = InspIRCd::TimeString(ServerInstance->Time());
55 		LAST = ServerInstance->Time();
56 	}
57 
58 	this->f->WriteLogLine(TIMESTR + " " + type + ": " + text + "\n");
59 }
60