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