Macro aul::log_warn

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

macro for logging with Level WARN

Example

 use aul::level::Level;
 use aul::{log,log_warn};
 log_warn!("WARNING");
 // [WARN]: WARNING