macro_rules! log_debug { ($($arg:tt)+) => { ... }; }
macro for logging with Level DEBUG
DEBUG
use aul::level::Level; use aul::{log,log_debug}; log_debug!("debugging info"); // [DEBUG]: debugging info