diff options
author | M&M <goldtextwitch@outlook.com> | 2020-07-29 10:25:37 -0700 |
---|---|---|
committer | M&M <goldtextwitch@outlook.com> | 2020-08-24 21:39:56 -0700 |
commit | 43ce33b6cced1d049f1cef3a9b1fddcfad8aef7c (patch) | |
tree | 3eb2d533a8edd88b54934aa35371fa7fb9d7bc30 /src/yuzu/configuration/config.cpp | |
parent | bb752df73676fa09e5d37df53ce5a464dd747111 (diff) |
logging/settings: Increase maximum log size to 100 MB and add extended logging option
The extended logging option is automatically disabled on boot but can be enabled afterwards, allowing the log file to go up to 1 GB during that session.
This commit also fixes a few errors that are present in the general debug menu.
Diffstat (limited to 'src/yuzu/configuration/config.cpp')
-rw-r--r-- | src/yuzu/configuration/config.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/yuzu/configuration/config.cpp b/src/yuzu/configuration/config.cpp index 7af974d8d3..1d4816d34a 100644 --- a/src/yuzu/configuration/config.cpp +++ b/src/yuzu/configuration/config.cpp @@ -523,6 +523,8 @@ void Config::ReadDebuggingValues() { Settings::values.quest_flag = ReadSetting(QStringLiteral("quest_flag"), false).toBool(); Settings::values.disable_macro_jit = ReadSetting(QStringLiteral("disable_macro_jit"), false).toBool(); + Settings::values.extended_logging = + ReadSetting(QStringLiteral("extended_logging"), false).toBool(); qt_config->endGroup(); } |