Merge branch 'log_include_mId' into storageareas

pull/1427/head
Isaac Connor 2016-04-12 08:42:38 -04:00
commit fb48c909ce
1 changed files with 1 additions and 1 deletions

View File

@ -615,7 +615,7 @@ void Logger::logPrint( bool hex, const char * const filepath, const int line, co
{
int priority = smSyslogPriorities[level];
//priority |= LOG_DAEMON;
syslog( priority, "%s [%s]", classString, syslogStart );
syslog( priority, "%s [%s] [%s]", classString, mId.c_str(), syslogStart );
}
if ( level <= FATAL )