Skip to content
Snippets Groups Projects
Commit 95ce4717 authored by bunnei's avatar bunnei
Browse files

config: Default log filter to trace.

parent 1247c537
No related branches found
No related tags found
No related merge requests found
......@@ -86,7 +86,7 @@ void Config::ReadValues() {
qt_config->endGroup();
qt_config->beginGroup("Miscellaneous");
Settings::values.log_filter = qt_config->value("log_filter", "*:Info").toString().toStdString();
Settings::values.log_filter = qt_config->value("log_filter", "*:Trace").toString().toStdString();
qt_config->endGroup();
qt_config->beginGroup("Debugging");
......
......@@ -100,7 +100,7 @@ void Config::ReadValues() {
sdl2_config->GetBoolean("Data Storage", "use_virtual_sd", true);
// Miscellaneous
Settings::values.log_filter = sdl2_config->Get("Miscellaneous", "log_filter", "*:Info");
Settings::values.log_filter = sdl2_config->Get("Miscellaneous", "log_filter", "*:Trace");
// Debugging
Settings::values.use_gdbstub = sdl2_config->GetBoolean("Debugging", "use_gdbstub", false);
......
......@@ -156,7 +156,7 @@ region_value =
[Miscellaneous]
# A filter which removes logs below a certain logging level.
# Examples: *:Debug Kernel.SVC:Trace Service.*:Critical
log_filter = *:Info
log_filter = *:Trace
[Debugging]
# Port for listening to GDB connections.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment