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