blob: 8ed66eca29cd0eeeb923b26e65216bfcb4bb9259 (
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
|
/* +------------------------------------+
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
* InspIRCd: (C) 2002-2010 InspIRCd Development Team
* See: http://wiki.inspircd.org/Credits
*
* This program is free but copyrighted software; see
* the file COPYING for details.
*
* ---------------------------------------------------
*/
/* $Core */
#include "inspircd.h"
#include <fstream>
#include "socketengine.h"
#include "filelogger.h"
FileLogStream::FileLogStream(int loglevel, FileWriter *fw)
: LogStream(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;
if (loglevel < this->loglvl)
{
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);
}
|