Merge pull request #637 from JunielKatarn/Logging

Fix flags for debug/validate logging.
This commit is contained in:
zilmar 2015-09-30 10:58:10 +10:00
commit 63ea387bcf
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ void InitializeLog ( void)
LogFile = new CTraceFileLog(LogFilePath, g_Settings->LoadDword(Debugger_AppLogFlush) != 0, Log_New,500);
#ifdef VALIDATE_DEBUG
LogFile->SetTraceLevel((TraceLevel)(g_Settings->LoadDword(Debugger_AppLogLevel) | TraceValidate));
LogFile->SetTraceLevel((TraceLevel)(g_Settings->LoadDword(Debugger_AppLogLevel) | TraceValidate | TraceDebug));
#else
LogFile->SetTraceLevel((TraceLevel)g_Settings->LoadDword(Debugger_AppLogLevel));
#endif