Skip to content

Commit c82290c

Browse files
committed
Using proper log macro
1 parent deec99c commit c82290c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/macros.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#[cfg(all(feature = "log", not(feature = "defmt")))]
22
macro_rules! usb_log {
33
(trace, $($arg:expr),*) => { log::trace!($($arg),*) };
4-
(debug, $($arg:expr),*) => { log::trace!($($arg),*) };
4+
(debug, $($arg:expr),*) => { log::debug!($($arg),*) };
55
}
66

77
#[cfg(feature = "defmt")]

0 commit comments

Comments
 (0)