macro_rules! debug {
($($tt:tt)*) => { ... };
}Expand description
Equivalent to log::debug!
if the feature log is enabled, discarded otherwise.
macro_rules! debug {
($($tt:tt)*) => { ... };
}Equivalent to log::debug!
if the feature log is enabled, discarded otherwise.