- added time to error console output log items

This commit is contained in:
SoftCoder 2014-01-17 13:32:42 -08:00
parent 6439d98146
commit 27316e8912
1 changed files with 1 additions and 1 deletions

View File

@ -603,7 +603,7 @@ void SystemFlags::logDebugEntry(DebugType type, string debugEntry, time_t debugT
printf("[%s] %s", szBuf2, debugEntry.c_str());
}
else if (type == debugError) {
printf("*ERROR* %s", debugEntry.c_str());
printf("*ERROR* [%s] %s", szBuf2,debugEntry.c_str());
}
else {
printf("%s", debugEntry.c_str());