custom_init/
custom_init.rs1#[macro_use]
2extern crate log;
3
4fn main() {
5 zarthus_env_logger::init_custom(vec!["custom_init"], log::LevelFilter::Trace, "%H:%M:%S %Z");
6
7 trace!("Trace log!");
8 debug!("Debug log!");
9 info!("Info log!");
10 warn!("Warning log!");
11 error!("Error log!");
12}