aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx/Ui/MainWindow.cs
diff options
context:
space:
mode:
authormlgatto <98356234+mlgatto@users.noreply.github.com>2022-02-18 01:08:07 +0100
committerGitHub <noreply@github.com>2022-02-17 21:08:07 -0300
commit95cc18a7b41ca28f47b1388d1952e341fe568430 (patch)
tree86397c11eda2b696466c3b5d9f5edf7e91c6706a /Ryujinx/Ui/MainWindow.cs
parentc017c77365f877e2b4d2c4d15add6899c5d30fc4 (diff)
Added trace log level (#3096)1.1.38
* 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
Diffstat (limited to 'Ryujinx/Ui/MainWindow.cs')
-rw-r--r--Ryujinx/Ui/MainWindow.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/Ryujinx/Ui/MainWindow.cs b/Ryujinx/Ui/MainWindow.cs
index cc3c1239..92689307 100644
--- a/Ryujinx/Ui/MainWindow.cs
+++ b/Ryujinx/Ui/MainWindow.cs
@@ -638,18 +638,18 @@ namespace Ryujinx.Ui
[Conditional("RELEASE")]
public void PerformanceCheck()
{
- if (ConfigurationState.Instance.Logger.EnableDebug.Value)
+ if (ConfigurationState.Instance.Logger.EnableTrace.Value)
{
MessageDialog debugWarningDialog = new MessageDialog(this, DialogFlags.Modal, MessageType.Warning, ButtonsType.YesNo, null)
{
Title = "Ryujinx - Warning",
- Text = "You have debug logging enabled, which is designed to be used by developers only.",
- SecondaryText = "For optimal performance, it's recommended to disable debug logging. Would you like to disable debug logging now?"
+ Text = "You have trace logging enabled, which is designed to be used by developers only.",
+ SecondaryText = "For optimal performance, it's recommended to disable trace logging. Would you like to disable trace logging now?"
};
if (debugWarningDialog.Run() == (int)ResponseType.Yes)
{
- ConfigurationState.Instance.Logger.EnableDebug.Value = false;
+ ConfigurationState.Instance.Logger.EnableTrace.Value = false;
SaveConfig();
}