diff options
| author | 2018-01-13 16:23:12 -0500 | |
|---|---|---|
| committer | 2018-01-13 16:23:12 -0500 | |
| commit | 95ce47177478227e300d5124c6797a1328e2aec8 (patch) | |
| tree | 88d2f51f75892e27eac7ec2dc1a1886e129613ee | |
| parent | yuzu: Update license text to be consistent across project. (diff) | |
| download | yuzu-95ce47177478227e300d5124c6797a1328e2aec8.tar.gz yuzu-95ce47177478227e300d5124c6797a1328e2aec8.tar.xz yuzu-95ce47177478227e300d5124c6797a1328e2aec8.zip | |
config: Default log filter to trace.
Diffstat (limited to '')
| -rw-r--r-- | src/yuzu/configuration/config.cpp | 2 | ||||
| -rw-r--r-- | src/yuzu_cmd/config.cpp | 2 | ||||
| -rw-r--r-- | src/yuzu_cmd/default_ini.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/yuzu/configuration/config.cpp b/src/yuzu/configuration/config.cpp index 047e347d1..4c713fcbc 100644 --- a/src/yuzu/configuration/config.cpp +++ b/src/yuzu/configuration/config.cpp | |||
| @@ -86,7 +86,7 @@ void Config::ReadValues() { | |||
| 86 | qt_config->endGroup(); | 86 | qt_config->endGroup(); |
| 87 | 87 | ||
| 88 | qt_config->beginGroup("Miscellaneous"); | 88 | qt_config->beginGroup("Miscellaneous"); |
| 89 | Settings::values.log_filter = qt_config->value("log_filter", "*:Info").toString().toStdString(); | 89 | Settings::values.log_filter = qt_config->value("log_filter", "*:Trace").toString().toStdString(); |
| 90 | qt_config->endGroup(); | 90 | qt_config->endGroup(); |
| 91 | 91 | ||
| 92 | qt_config->beginGroup("Debugging"); | 92 | qt_config->beginGroup("Debugging"); |
diff --git a/src/yuzu_cmd/config.cpp b/src/yuzu_cmd/config.cpp index df94ce839..e5be72213 100644 --- a/src/yuzu_cmd/config.cpp +++ b/src/yuzu_cmd/config.cpp | |||
| @@ -100,7 +100,7 @@ void Config::ReadValues() { | |||
| 100 | sdl2_config->GetBoolean("Data Storage", "use_virtual_sd", true); | 100 | sdl2_config->GetBoolean("Data Storage", "use_virtual_sd", true); |
| 101 | 101 | ||
| 102 | // Miscellaneous | 102 | // Miscellaneous |
| 103 | Settings::values.log_filter = sdl2_config->Get("Miscellaneous", "log_filter", "*:Info"); | 103 | Settings::values.log_filter = sdl2_config->Get("Miscellaneous", "log_filter", "*:Trace"); |
| 104 | 104 | ||
| 105 | // Debugging | 105 | // Debugging |
| 106 | Settings::values.use_gdbstub = sdl2_config->GetBoolean("Debugging", "use_gdbstub", false); | 106 | Settings::values.use_gdbstub = sdl2_config->GetBoolean("Debugging", "use_gdbstub", false); |
diff --git a/src/yuzu_cmd/default_ini.h b/src/yuzu_cmd/default_ini.h index b7b8abe1e..e7941eceb 100644 --- a/src/yuzu_cmd/default_ini.h +++ b/src/yuzu_cmd/default_ini.h | |||
| @@ -156,7 +156,7 @@ region_value = | |||
| 156 | [Miscellaneous] | 156 | [Miscellaneous] |
| 157 | # A filter which removes logs below a certain logging level. | 157 | # A filter which removes logs below a certain logging level. |
| 158 | # Examples: *:Debug Kernel.SVC:Trace Service.*:Critical | 158 | # Examples: *:Debug Kernel.SVC:Trace Service.*:Critical |
| 159 | log_filter = *:Info | 159 | log_filter = *:Trace |
| 160 | 160 | ||
| 161 | [Debugging] | 161 | [Debugging] |
| 162 | # Port for listening to GDB connections. | 162 | # Port for listening to GDB connections. |