diff options
Diffstat (limited to 'src/shared/Log.cpp')
-rw-r--r-- | src/shared/Log.cpp | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/src/shared/Log.cpp b/src/shared/Log.cpp index e443d10ed6c..9f7167f9238 100644 --- a/src/shared/Log.cpp +++ b/src/shared/Log.cpp @@ -429,7 +429,7 @@ void Log::outCrash( const char * err, ... ) if(logfile) { outTimestamp(logfile); - fprintf(logfile, "CRASH ALARM:" ); + fprintf(logfile, "CRASH ALARM: " ); va_list ap; va_start(ap, err); @@ -469,7 +469,7 @@ void Log::outError( const char * err, ... ) if(logfile) { outTimestamp(logfile); - fprintf(logfile, "ERROR:" ); + fprintf(logfile, "ERROR: " ); va_list ap; va_start(ap, err); @@ -487,18 +487,6 @@ void Log::outErrorDb( const char * err, ... ) if( !err ) return; - /* - if (m_enableLogDB) - { - va_list ap2; - va_start(ap2, err); - char nnew_str[MAX_QUERY_LEN]; - vsnprintf(nnew_str, MAX_QUERY_LEN, err, ap2); - outDB(LOG_TYPE_DBERR, nnew_str); - va_end(ap2); - } - */ - if(m_colored) SetColor(false,RED); @@ -512,7 +500,7 @@ void Log::outErrorDb( const char * err, ... ) if(logfile) { outTimestamp(logfile); - fprintf(logfile, "ERROR:" ); + fprintf(logfile, "ERROR: " ); va_list ap; va_start(ap, err); |