1 2 3 4 5 6 7
pub mod level { pub const ERROR: &str = "ERROR "; pub const WARN: &str = "WARN "; pub const INFO: &str = "INFO "; pub const DEBUG: &str = "DEBUG "; pub const TRACE: &str = "TRACE "; }