enable console logging by default to simplify troubleshooting

it is enabled anyway in Sys_Print() if ( level == SYS_ERR ), but later
This commit is contained in:
Garux 2020-08-28 19:55:35 +03:00
parent 1cf7b72e6b
commit bd8a597016

View File

@ -43,7 +43,7 @@ namespace
FILE* g_hLogFile;
}
bool g_Console_enableLogging = false;
bool g_Console_enableLogging = true;
// called whenever we need to open/close/check the console log file
void Sys_LogFile( bool enable ){