mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2024-11-04 06:00:37 +00:00
28 lines
502 B
C++
28 lines
502 B
C++
#include "Log.h"
|
|
|
|
Log * g_Log = nullptr;
|
|
|
|
void LogMsg::Process()
|
|
{
|
|
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;
|
|
}
|
|
}
|