VMManager: Enable file logging by default

This commit is contained in:
JordanTheToaster 2025-03-16 14:50:44 +00:00 committed by Ty
parent bc7670aa3b
commit fb18fdf5b7
1 changed files with 1 additions and 1 deletions

View File

@ -474,7 +474,7 @@ void VMManager::UpdateLoggingSettings(SettingsInterface& si)
const bool system_console_enabled = !s_log_block_system_console && si.GetBoolValue("Logging", "EnableSystemConsole", false);
const bool log_window_enabled = !s_log_block_system_console && si.GetBoolValue("Logging", "EnableLogWindow", false);
const bool file_logging_enabled = s_log_force_file_log || si.GetBoolValue("Logging", "EnableFileLogging", false);
const bool file_logging_enabled = s_log_force_file_log || si.GetBoolValue("Logging", "EnableFileLogging", true);
if (system_console_enabled != Log::IsConsoleOutputEnabled())
Log::SetConsoleOutputLevel(system_console_enabled ? level : LOGLEVEL_NONE);