ES-DE/es-core/src/Log.cpp

75 lines
1.6 KiB
C++
Raw Normal View History

// SPDX-License-Identifier: MIT
//
// EmulationStation Desktop Edition
// Log.cpp
//
2021-11-15 19:47:00 +00:00
// Log output.
//
#include "Log.h"
2017-11-01 22:21:10 +00:00
void Log::init()
{
Utils::FileSystem::removeFile(getLogPath() + ".bak");
// Rename the previous log file.
Utils::FileSystem::renameFile(getLogPath(), getLogPath() + ".bak", true);
return;
}
void Log::open()
{
#if defined(_WIN64)
file.open(Utils::String::stringToWideString(getLogPath()).c_str());
#else
2021-11-15 19:47:00 +00:00
sFile.open(getLogPath().c_str());
#endif
}
std::ostringstream& Log::get(LogLevel level)
{
time_t t = time(nullptr);
struct tm tm;
#if defined(_WIN64)
// Of course Windows does not follow standards and puts the parameters the other way
// around compared to POSIX.
localtime_s(&tm, &t);
#else
localtime_r(&t, &tm);
#endif
2021-11-15 19:47:00 +00:00
mOutStringStream << std::put_time(&tm, "%b %d %T ") << mLogLevelMap[level] << ":\t";
mMessageLevel = level;
2021-11-15 19:47:00 +00:00
return mOutStringStream;
}
void Log::flush()
{
2021-11-15 19:47:00 +00:00
// Flush file.
sFile.flush();
}
void Log::close()
{
2021-11-15 19:47:00 +00:00
if (sFile.is_open())
sFile.close();
}
Log::~Log()
{
2021-11-15 19:47:00 +00:00
mOutStringStream << std::endl;
2021-11-15 19:47:00 +00:00
if (!sFile.is_open()) {
// Not open yet, print to stdout.
std::cerr << "Error: Tried to write to log file before it was open, "
"the following won't be logged:\n";
2021-11-15 19:47:00 +00:00
std::cerr << mOutStringStream.str();
return;
}
2021-11-15 19:47:00 +00:00
sFile << mOutStringStream.str();
2021-11-15 19:47:00 +00:00
// If it's an error or the --debug flag has been set, then print to the console as well.
if (mMessageLevel == LogError || sReportingLevel >= LogDebug)
std::cerr << mOutStringStream.str();
}