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/ConfigurationFileFormat.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'Ryujinx/Configuration/ConfigurationFileFormat.cs') diff --git a/Ryujinx/Configuration/ConfigurationFileFormat.cs b/Ryujinx/Configuration/ConfigurationFileFormat.cs index 9eb11a9e..8e64aa08 100644 --- a/Ryujinx/Configuration/ConfigurationFileFormat.cs +++ b/Ryujinx/Configuration/ConfigurationFileFormat.cs @@ -14,7 +14,7 @@ namespace Ryujinx.Configuration /// <summary> /// The current version of the file format /// </summary> - public const int CurrentVersion = 35; + public const int CurrentVersion = 36; /// <summary> /// Version of the configuration file format @@ -81,6 +81,11 @@ namespace Ryujinx.Configuration /// </summary> public bool LoggingEnableError { get; set; } + /// <summary> + /// Enables printing trace log messages + /// </summary> + public bool LoggingEnableTrace { get; set; } + /// <summary> /// Enables printing guest log messages /// </summary> -- cgit v1.2.3-70-g09d2