error

Macro error 

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

macro for logging with Level ERROR

ยงExample

 use aul::error;
 use aul::log;
 use aul::level::Level;
 error!("This is an error");
 // [ERROR]: This is an error