xhci: default to debug logging

This commit is contained in:
Jeremy Soller
2022-12-02 08:24:54 -07:00
parent 6187ea09bc
commit 508a2ee4de
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -42,7 +42,7 @@ fn setup_logging(name: &str) -> Option<&'static RedoxLogger> {
let mut logger = RedoxLogger::new()
.with_output(
OutputBuilder::stderr()
.with_filter(log::LevelFilter::Info) // limit global output to important info
.with_filter(log::LevelFilter::Debug) // limit global output to important info
.with_ansi_escape_codes()
.flush_on_newline(true)
.build()
+1 -1
View File
@@ -162,7 +162,7 @@ impl IrqReactor {
return Ok(None);
}
trace!("IRQ reactor received an IRQ");
debug!("IRQ reactor received an IRQ");
let _ = self.irq_file.as_mut().unwrap().write(&buffer);