1 2 3 4 5 6 7 8 9 10
/// Logs an info if log feature is enabled macro_rules! info { ($($x:tt)*) => ( #[cfg(feature = "log")] { log::info!($($x)*) } ) } pub(crate) use info;