mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2024-11-04 06:00:37 +00:00
dd4283b7c1
This reverts commitsc8a80a497d
andf7791e5289
This didn't actually fix Windows crash problem. In fact, it still crashed without --log=0 being set. Changes to the i2pd.vcxproj file fixed the crashes with VS 2013 > update 1. i2pd now works with VS 2013 Update 3 and Update 4 RC. Since these changes didn't have the intended effect, let's remove them.
39 lines
823 B
C++
39 lines
823 B
C++
#include "Log.h"
|
|
#include <boost/date_time/posix_time/posix_time.hpp>
|
|
|
|
Log * g_Log = nullptr;
|
|
|
|
static const char * g_LogLevelStr[eNumLogLevels] =
|
|
{
|
|
"error", // eLogError
|
|
"warn", // eLogWarning
|
|
"info", // eLogInfo
|
|
"debug" // eLogDebug
|
|
};
|
|
|
|
void LogMsg::Process()
|
|
{
|
|
output << boost::posix_time::second_clock::local_time().time_of_day () <<
|
|
"/" << g_LogLevelStr[level] << " - ";
|
|
output << s.str();
|
|
}
|
|
|
|
void Log::Flush ()
|
|
{
|
|
if (m_LogFile)
|
|
m_LogFile->flush();
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|