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.Headless.SDL2/Program.cs | 1 + 1 file changed, 1 insertion(+) (limited to 'Ryujinx.Headless.SDL2/Program.cs') diff --git a/Ryujinx.Headless.SDL2/Program.cs b/Ryujinx.Headless.SDL2/Program.cs index 14c72360..973b4f5e 100644 --- a/Ryujinx.Headless.SDL2/Program.cs +++ b/Ryujinx.Headless.SDL2/Program.cs @@ -389,6 +389,7 @@ namespace Ryujinx.Headless.SDL2 Logger.SetEnable(LogLevel.Info, (bool)option.LoggingEnableInfo); Logger.SetEnable(LogLevel.Warning, (bool)option.LoggingEnableWarning); Logger.SetEnable(LogLevel.Error, (bool)option.LoggingEnableError); + Logger.SetEnable(LogLevel.Trace, (bool)option.LoggingEnableTrace); Logger.SetEnable(LogLevel.Guest, (bool)option.LoggingEnableGuest); Logger.SetEnable(LogLevel.AccessLog, (bool)option.LoggingEnableFsAccessLog); -- cgit v1.2.3-70-g09d2