|
@@ -1,13 +1,13 @@
|
|
|
#[cfg(feature = "log")]
|
|
|
macro_rules! net_log {
|
|
|
- (trace, $($arg:expr),*) => { log::trace!($($arg),*); };
|
|
|
- (debug, $($arg:expr),*) => { log::debug!($($arg),*); };
|
|
|
+ (trace, $($arg:expr),*) => { log::trace!($($arg),*) };
|
|
|
+ (debug, $($arg:expr),*) => { log::debug!($($arg),*) };
|
|
|
}
|
|
|
|
|
|
#[cfg(feature = "defmt")]
|
|
|
macro_rules! net_log {
|
|
|
- (trace, $($arg:expr),*) => { defmt::trace!($($arg),*); };
|
|
|
- (debug, $($arg:expr),*) => { defmt::debug!($($arg),*); };
|
|
|
+ (trace, $($arg:expr),*) => { defmt::trace!($($arg),*) };
|
|
|
+ (debug, $($arg:expr),*) => { defmt::debug!($($arg),*) };
|
|
|
}
|
|
|
|
|
|
#[cfg(not(any(feature = "log", feature = "defmt")))]
|