From da188109d49955caa12646890e237d08efce862f Mon Sep 17 00:00:00 2001 From: 4lDO2 <4lDO2@protonmail.com> Date: Sun, 19 Apr 2020 17:11:08 +0200 Subject: [PATCH] Change the default log level to debug. --- xhcid/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xhcid/src/main.rs b/xhcid/src/main.rs index f8dfd8c520..66a84b2262 100644 --- a/xhcid/src/main.rs +++ b/xhcid/src/main.rs @@ -94,7 +94,7 @@ fn main() { Ok(logger) => match logger.with_stdout_mirror().enable() { Ok(_) => { println!("xhcid: enabled logger"); - log::set_max_level(log::LevelFilter::Trace); + log::set_max_level(log::LevelFilter::Debug); } Err(error) => eprintln!("xhcid: failed to set default logger: {}", error), }