summaryrefslogtreecommitdiff
path: root/src/filelogger.cpp
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-02-09 12:41:17 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-02-09 12:41:17 +0000
commitaf7e1a1ca8b36064593becf62b1a91468ad32237 (patch)
tree6d2bdd3f4522c7bff69306fb6d3aa2f488e38d9c /src/filelogger.cpp
parentdb1c78986c8055f59b9bdf98a883dfbf3f4db6b9 (diff)
New logging implementation. Also write messages about InspIRCd::Log() being deprecated. Any takers on changing it all to use the new system? :P. STILL TODO: create <log> blocks in config, add a method called to 'cleanup' (or use destructor) of logstreams, add a method to logmanager to initiate destruction of all logstreams.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8858 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/filelogger.cpp')
-rw-r--r--src/filelogger.cpp35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/filelogger.cpp b/src/filelogger.cpp
index e22b4fdf4..0e50f628e 100644
--- a/src/filelogger.cpp
+++ b/src/filelogger.cpp
@@ -101,3 +101,38 @@ FileLogger::~FileLogger()
this->Close();
}
+
+void FileLogStream::OnLog(int loglevel, 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 < ServerInstance->Config->LogLevel) && !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();
+ }
+
+ if (ServerInstance->Config->log_file && ServerInstance->Config->writelog)
+ {
+ std::string out = std::string(TIMESTR) + " " + text.c_str() + "\n";
+ this->f->WriteLogLine(out);
+ }
+
+ if (ServerInstance->Config->nofork)
+ {
+ printf("%s %s\n", TIMESTR, text.c_str());
+ }
+}