Macro aul::log_debug

source ·
macro_rules! log_debug {
    ($($arg:tt)+) => { ... };
}
Expand description

macro for logging with Level DEBUG

Example

 use aul::level::Level;
 use aul::{log,log_debug};

 log_debug!("debugging info");
 // [DEBUG]: debugging info