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