forked from organicmaps/organicmaps
[fix] Added NUM_LOG_LEVELS case handling.
This commit is contained in:
parent
fcc1bb8003
commit
7ac781d70c
3 changed files with 5 additions and 0 deletions
|
@ -70,6 +70,7 @@ using ::my::LINFO;
|
|||
using ::my::LWARNING;
|
||||
using ::my::LERROR;
|
||||
using ::my::LCRITICAL;
|
||||
using ::my::NUM_LOG_LEVELS;
|
||||
|
||||
// Logging macro.
|
||||
// Example usage: LOG(LINFO, (Calc(), m_Var, "Some string constant"));
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
|
||||
#include "fabric_logging.hpp"
|
||||
|
||||
#include "base/assert.hpp"
|
||||
|
||||
namespace platform
|
||||
{
|
||||
void LogMessageFabric(my::LogLevel level, my::SrcPoint const & srcPoint, std::string const & msg)
|
||||
|
@ -14,6 +16,7 @@ namespace platform
|
|||
case LWARNING: recordType.assign("WARN "); break;
|
||||
case LERROR: recordType.assign("ERROR "); break;
|
||||
case LCRITICAL: recordType.assign("FATAL "); break;
|
||||
case NUM_LOG_LEVELS: CHECK(false, ()); break;
|
||||
}
|
||||
|
||||
std::string const srcString = recordType + DebugPrint(srcPoint) + " " + msg + "\n";
|
||||
|
|
|
@ -33,6 +33,7 @@ void LogMessageFile(my::LogLevel level, my::SrcPoint const & srcPoint, string co
|
|||
case LWARNING: recordType.assign("WARN "); break;
|
||||
case LERROR: recordType.assign("ERROR "); break;
|
||||
case LCRITICAL: recordType.assign("FATAL "); break;
|
||||
case NUM_LOG_LEVELS: CHECK(false, ()); break;
|
||||
}
|
||||
|
||||
lock_guard<mutex> lock(mtx);
|
||||
|
|
Loading…
Add table
Reference in a new issue