undo a debug thing that shouldn't have been committed

This commit is contained in:
Isaac Connor 2018-04-03 09:12:18 -04:00
parent a5b77a59d3
commit ceb12cdd81
1 changed files with 1 additions and 1 deletions

View File

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