From a3a76284cb39d294aee5d11a532e7d5b54e11b66 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Wed, 13 Apr 2022 09:05:26 -0600 Subject: [PATCH] xhcid: set logging filter to info --- xhcid/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xhcid/src/main.rs b/xhcid/src/main.rs index e92f068bd0..c8b84180f9 100644 --- a/xhcid/src/main.rs +++ b/xhcid/src/main.rs @@ -52,7 +52,7 @@ fn setup_logging() -> Option<&'static RedoxLogger> { match OutputBuilder::in_redox_logging_scheme("usb", "host", "xhci.log") { Ok(b) => logger = logger.with_output( // TODO: Add a configuration file for this - b.with_filter(log::LevelFilter::Trace) + b.with_filter(log::LevelFilter::Info) .flush_on_newline(true) .build() ), @@ -62,7 +62,7 @@ fn setup_logging() -> Option<&'static RedoxLogger> { #[cfg(target_os = "redox")] match OutputBuilder::in_redox_logging_scheme("usb", "host", "xhci.ansi.log") { Ok(b) => logger = logger.with_output( - b.with_filter(log::LevelFilter::Trace) + b.with_filter(log::LevelFilter::Info) .with_ansi_escape_codes() .flush_on_newline(true) .build()