Macro aul::log_error

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

macro for logging with Level ERROR

Example

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

 log_error!("This is an error");
 // [ERROR]: This is an error