i2pd/Log.cpp

39 lines
823 B
C++
Raw Normal View History

2013-12-10 17:00:13 +04:00
#include "Log.h"
2014-08-17 09:35:09 +04:00
#include <boost/date_time/posix_time/posix_time.hpp>
2013-12-10 17:00:13 +04:00
2014-07-02 21:48:45 +04:00
Log * g_Log = nullptr;
2014-10-28 23:36:17 +03:00
static const char * g_LogLevelStr[eNumLogLevels] =
{
"error", // eLogError
"warn", // eLogWarning
"info", // eLogInfo
"debug" // eLogDebug
};
void LogMsg::Process()
{
2014-10-28 23:36:17 +03:00
output << boost::posix_time::second_clock::local_time().time_of_day () <<
"/" << g_LogLevelStr[level] << " - ";
output << s.str();
2014-04-23 20:49:02 +04:00
}
void Log::Flush ()
{
2014-04-24 19:10:46 +04:00
if (m_LogFile)
m_LogFile->flush();
2014-04-23 20:49:02 +04:00
}
2014-04-24 19:10:46 +04:00
void Log::SetLogFile (const std::string& fullFilePath)
{
if (m_LogFile) delete m_LogFile;
m_LogFile = new std::ofstream (fullFilePath, std::ofstream::out | std::ofstream::binary | std::ofstream::trunc);
if (m_LogFile->is_open ())
LogPrint("Logging to file ", fullFilePath, " enabled.");
else
{
delete m_LogFile;
m_LogFile = nullptr;
}
}