1 use simple_logger::SimpleLogger;
2 
init_logger()3 pub fn init_logger() {
4     let _ = SimpleLogger::new().with_utc_timestamps().init();
5 }
6