From 12e713dc19fae0a852d13026554214f5653549f7 Mon Sep 17 00:00:00 2001 From: Astro Date: Thu, 1 Oct 2020 00:34:28 +0200 Subject: [PATCH] init_log: bump max level to Debug for USB --- src/init_log.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/init_log.rs b/src/init_log.rs index 5ec669e..5fd9876 100644 --- a/src/init_log.rs +++ b/src/init_log.rs @@ -4,7 +4,7 @@ use crate::usb; pub fn init_log() { static USB_LOGGER: usb::Logger = usb::Logger; let _ = log::set_logger(&USB_LOGGER); - log::set_max_level(log::LevelFilter::Trace); + log::set_max_level(log::LevelFilter::Debug); } #[cfg(feature = "semihosting")]