]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/filelogger.cpp
Convert LocalUserList to an intrusively linked list
[user/henk/code/inspircd.git] / src / filelogger.cpp
index 0575256d08c8261c8b7b905dc283e2cd9c0c6cf5..fff0b37fac23525747f7647c2e3148d1abb0c937 100644 (file)
  */
 
 
-/* $Core */
-
 #include "inspircd.h"
 #include <fstream>
 #include "socketengine.h"
 #include "filelogger.h"
 
-FileLogStream::FileLogStream(int loglevel, FileWriter *fw)
-       : LogStream(loglevel), f(fw)
+FileLogStream::FileLogStream(LogLevel loglevel, FileWriter *fw) : LogStream(loglevel), f(fw)
 {
        ServerInstance->Logs->AddLoggerRef(f);
 }
@@ -38,9 +35,9 @@ FileLogStream::~FileLogStream()
        ServerInstance->Logs->DelLoggerRef(f);
 }
 
-void FileLogStream::OnLog(int loglevel, const std::string &type, const std::string &text)
+void FileLogStream::OnLog(LogLevel loglevel, const std::string &type, const std::string &text)
 {
-       static char TIMESTR[26];
+       static std::string TIMESTR;
        static time_t LAST = 0;
 
        if (loglevel < this->loglvl)
@@ -53,11 +50,9 @@ void FileLogStream::OnLog(int loglevel, const std::string &type, const std::stri
                time_t local = ServerInstance->Time();
                struct tm *timeinfo = localtime(&local);
 
-               strlcpy(TIMESTR,asctime(timeinfo),26);
-               TIMESTR[24] = ':';
+               TIMESTR.assign(asctime(timeinfo), 24);
                LAST = ServerInstance->Time();
        }
 
-       std::string out = std::string(TIMESTR) + " " + text.c_str() + "\n";
-       this->f->WriteLogLine(out);
+       this->f->WriteLogLine(TIMESTR + " " + type + ": " + text + "\n");
 }