[fix] Added NUM_LOG_LEVELS case handling.

This commit is contained in:
Ilya Grechuhin 2017-06-29 12:30:02 +03:00 committed by Yuri Gorshenin
parent fcc1bb8003
commit 7ac781d70c
3 changed files with 5 additions and 0 deletions

View file

@ -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"));

View file

@ -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";

View file

@ -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);