warn

Macro warn 

Source
macro_rules! warn {
    ($($arg:tt)+) => { ... };
}
Expand description

macro for logging with Level WARN

ยงExample

 use aul::{log, warn};
 use aul::level::Level;
 warn!("WARNING");
 log!(Level::INFO,"hello")
 // [WARN]: WARNING