From 95cc18a7b41ca28f47b1388d1952e341fe568430 Mon Sep 17 00:00:00 2001 From: mlgatto <98356234+mlgatto@users.noreply.github.com> Date: Fri, 18 Feb 2022 01:08:07 +0100 Subject: Added trace log level (#3096) * added trace log level * use trace log level instead of debug ( #1547) * alignment #1547 * moved trace logs toggle at the bottom #1547 * bumped config file version #3096 * added migration step #3096 * setting moved to the dev section #1547 * performance warning displayed when trace is enabled #1547 --- Ryujinx/Configuration/LoggerModule.cs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'Ryujinx/Configuration/LoggerModule.cs') diff --git a/Ryujinx/Configuration/LoggerModule.cs b/Ryujinx/Configuration/LoggerModule.cs index 2599eeff..9e81f725 100644 --- a/Ryujinx/Configuration/LoggerModule.cs +++ b/Ryujinx/Configuration/LoggerModule.cs @@ -13,6 +13,7 @@ namespace Ryujinx.Configuration ConfigurationState.Instance.Logger.EnableInfo.Event += ReloadEnableInfo; ConfigurationState.Instance.Logger.EnableWarn.Event += ReloadEnableWarning; ConfigurationState.Instance.Logger.EnableError.Event += ReloadEnableError; + ConfigurationState.Instance.Logger.EnableTrace.Event += ReloadEnableTrace; ConfigurationState.Instance.Logger.EnableGuest.Event += ReloadEnableGuest; ConfigurationState.Instance.Logger.EnableFsAccessLog.Event += ReloadEnableFsAccessLog; ConfigurationState.Instance.Logger.FilteredClasses.Event += ReloadFilteredClasses; @@ -44,6 +45,11 @@ namespace Ryujinx.Configuration Logger.SetEnable(LogLevel.Error, e.NewValue); } + private static void ReloadEnableTrace(object sender, ReactiveEventArgs<bool> e) + { + Logger.SetEnable(LogLevel.Trace, e.NewValue); + } + private static void ReloadEnableGuest(object sender, ReactiveEventArgs<bool> e) { Logger.SetEnable(LogLevel.Guest, e.NewValue); -- cgit v1.2.3-70-g09d2