1use ic_logger::IcLogger; 2 3fn main() { 4 IcLogger::new().init().unwrap(); 5 6 log::warn!("This is an example message."); 7}