blob: ff75e692309e8e067c00eff3bbedea87986d5a13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
/* +------------------------------------+
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
* InspIRCd: (C) 2002-2009 InspIRCd Development Team
* See: http://www.inspircd.org/wiki/index.php/Credits
*
* This program is free but copyrighted software; see
* the file COPYING for details.
*
* ---------------------------------------------------
*/
/* $Core */
#include "inspircd.h"
#include <fstream>
#include "socketengine.h"
#include "inspircd_se_config.h"
#include "filelogger.h"
FileLogStream::FileLogStream(InspIRCd *Instance, int loglevel, FileWriter *fw)
: LogStream(Instance, loglevel), f(fw)
{
ServerInstance->Logs->AddLoggerRef(f);
}
FileLogStream::~FileLogStream()
{
/* FileWriter is managed externally now */
ServerInstance->Logs->DelLoggerRef(f);
}
void FileLogStream::OnLog(int loglevel, const std::string &type, const std::string &text)
{
static char TIMESTR[26];
static time_t LAST = 0;
/* sanity check, just in case */
if (!ServerInstance->Config)
return;
/* If we were given -debug we output all messages, regardless of configured loglevel */
if ((loglevel < this->loglvl) && !ServerInstance->Config->forcedebug)
{
return;
}
if (ServerInstance->Time() != LAST)
{
time_t local = ServerInstance->Time();
struct tm *timeinfo = localtime(&local);
strlcpy(TIMESTR,asctime(timeinfo),26);
TIMESTR[24] = ':';
LAST = ServerInstance->Time();
}
std::string out = std::string(TIMESTR) + " " + text.c_str() + "\n";
this->f->WriteLogLine(out);
}
|