mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu.git
				synced 2025-05-12 00:45:25 +00:00 
			
		
		
		
	config: Default log filter to trace.
This commit is contained in:
		
							parent
							
								
									1247c53786
								
							
						
					
					
						commit
						95ce471774
					
				@ -86,7 +86,7 @@ void Config::ReadValues() {
 | 
				
			|||||||
    qt_config->endGroup();
 | 
					    qt_config->endGroup();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    qt_config->beginGroup("Miscellaneous");
 | 
					    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->endGroup();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    qt_config->beginGroup("Debugging");
 | 
					    qt_config->beginGroup("Debugging");
 | 
				
			||||||
 | 
				
			|||||||
@ -100,7 +100,7 @@ void Config::ReadValues() {
 | 
				
			|||||||
        sdl2_config->GetBoolean("Data Storage", "use_virtual_sd", true);
 | 
					        sdl2_config->GetBoolean("Data Storage", "use_virtual_sd", true);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // Miscellaneous
 | 
					    // Miscellaneous
 | 
				
			||||||
    Settings::values.log_filter = sdl2_config->Get("Miscellaneous", "log_filter", "*:Info");
 | 
					    Settings::values.log_filter = sdl2_config->Get("Miscellaneous", "log_filter", "*:Trace");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // Debugging
 | 
					    // Debugging
 | 
				
			||||||
    Settings::values.use_gdbstub = sdl2_config->GetBoolean("Debugging", "use_gdbstub", false);
 | 
					    Settings::values.use_gdbstub = sdl2_config->GetBoolean("Debugging", "use_gdbstub", false);
 | 
				
			||||||
 | 
				
			|||||||
@ -156,7 +156,7 @@ region_value =
 | 
				
			|||||||
[Miscellaneous]
 | 
					[Miscellaneous]
 | 
				
			||||||
# A filter which removes logs below a certain logging level.
 | 
					# A filter which removes logs below a certain logging level.
 | 
				
			||||||
# Examples: *:Debug Kernel.SVC:Trace Service.*:Critical
 | 
					# Examples: *:Debug Kernel.SVC:Trace Service.*:Critical
 | 
				
			||||||
log_filter = *:Info
 | 
					log_filter = *:Trace
 | 
				
			||||||
 | 
					
 | 
				
			||||||
[Debugging]
 | 
					[Debugging]
 | 
				
			||||||
# Port for listening to GDB connections.
 | 
					# Port for listening to GDB connections.
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user