different log levels

This commit is contained in:
orignal 2014-10-28 16:36:17 -04:00
parent fe4de7c8ac
commit 11a0bbc368
2 changed files with 30 additions and 4 deletions

11
Log.cpp
View file

@ -3,9 +3,18 @@
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 () << " - ";
output << boost::posix_time::second_clock::local_time().time_of_day () <<
"/" << g_LogLevelStr[level] << " - ";
output << s.str();
}