macro_rules! error { ($($arg:tt)+) => { ... }; }
macro for logging with Level ERROR
ERROR
use aul::error; use aul::log; use aul::level::Level; error!("This is an error"); // [ERROR]: This is an error