Fix flags for debug/validate logging.

This commit is contained in:
Julio C. Rocha 2015-09-26 15:59:57 -07:00
parent c3b394607c
commit 14a543f2cc
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