diff --git a/input/usbhidd/src/main.rs b/input/usbhidd/src/main.rs index eae573bae4..6bc79da3aa 100644 --- a/input/usbhidd/src/main.rs +++ b/input/usbhidd/src/main.rs @@ -202,7 +202,7 @@ fn main() { let desc: DevDesc = handle .get_standard_descs() .expect("Failed to get standard descriptors"); - log::info!("{:X?}", desc); + log::debug!("{:X?}", desc); let mut endp_count = 0; let (conf_desc, (if_desc, endp_desc_opt, hid_desc)) = desc diff --git a/xhcid/src/xhci/device_enumerator.rs b/xhcid/src/xhci/device_enumerator.rs index b1573ec7b8..f33f420c90 100644 --- a/xhcid/src/xhci/device_enumerator.rs +++ b/xhcid/src/xhci/device_enumerator.rs @@ -24,7 +24,7 @@ impl DeviceEnumerator { pub fn run(&mut self) { loop { - info!("Start Device Enumerator Loop"); + debug!("Start Device Enumerator Loop"); let request = match self.request_queue.recv() { Ok(req) => req, Err(err) => { diff --git a/xhcid/src/xhci/mod.rs b/xhcid/src/xhci/mod.rs index 2f91f72497..3d3798a312 100644 --- a/xhcid/src/xhci/mod.rs +++ b/xhcid/src/xhci/mod.rs @@ -104,7 +104,7 @@ impl Xhci { desc: &mut Dma, ) -> Result<()> { if self.interrupt_is_pending(0) { - warn!("EHB is already set!"); + debug!("EHB is already set!"); self.force_clear_interrupt(0); } let len = mem::size_of::();