input-rec: ensure controller logging is disabled by default

This commit is contained in:
Tyler Wilding 2022-05-22 20:04:27 -04:00 committed by Tyler Wilding
parent 710d3360ac
commit 8fb09d07ed
1 changed files with 2 additions and 2 deletions

View File

@ -772,8 +772,8 @@ void QtHost::UpdateLogging()
SysConsole.iopConsole.Enabled = any_logging_sinks && QtHost::GetBaseBoolSettingValue("Logging", "EnableIOPConsole", true);
// Input Recording Logs
SysConsole.recordingConsole.Enabled = system_console_enabled && QtHost::GetBaseBoolSettingValue("Logging", "EnableInputRecordingLogs", true);
SysConsole.controlInfo.Enabled = system_console_enabled && QtHost::GetBaseBoolSettingValue("Logging", "EnableControllerLogs", true);
SysConsole.recordingConsole.Enabled = any_logging_sinks && QtHost::GetBaseBoolSettingValue("Logging", "EnableInputRecordingLogs", true);
SysConsole.controlInfo.Enabled = any_logging_sinks && QtHost::GetBaseBoolSettingValue("Logging", "EnableControllerLogs", false);
SetSystemConsoleEnabled(system_console_enabled);
}