mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-01 08:26:25 +02:00
misc: add the ability to ignore UI logs when using trace & debug log levels
This commit is contained in:
parent
7bce8206d5
commit
f3cf03495d
8 changed files with 80 additions and 2 deletions
|
@ -46,6 +46,7 @@ namespace Ryujinx.Ava.Utilities.Configuration
|
|||
LoggingEnableTrace = Logger.EnableTrace,
|
||||
LoggingEnableGuest = Logger.EnableGuest,
|
||||
LoggingEnableFsAccessLog = Logger.EnableFsAccessLog,
|
||||
LoggingEnableAvalonia = Logger.EnableAvaloniaLog,
|
||||
LoggingFilteredClasses = Logger.FilteredClasses,
|
||||
LoggingGraphicsDebugLevel = Logger.GraphicsDebugLevel,
|
||||
SystemLanguage = System.Language,
|
||||
|
@ -165,6 +166,7 @@ namespace Ryujinx.Ava.Utilities.Configuration
|
|||
Logger.EnableTrace.Value = false;
|
||||
Logger.EnableGuest.Value = true;
|
||||
Logger.EnableFsAccessLog.Value = false;
|
||||
Logger.EnableAvaloniaLog.Value = false;
|
||||
Logger.FilteredClasses.Value = [];
|
||||
Logger.GraphicsDebugLevel.Value = GraphicsDebugLevel.None;
|
||||
System.Language.Value = Language.AmericanEnglish;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue