1 2 3 4 5 6 7 8 9 10 11 12 13 14
#![cfg(feature = "program")] pub use cbe_program::log::*; #[macro_export] #[deprecated( since = "1.4.3", note = "Please use `cbe_program::log::info` instead" )] macro_rules! info { ($msg:expr) => { $crate::log::cbe_log($msg) }; }