log::error! [-]  [+] [src]

macro_rules! error {
    ($($arg:tt)*) => (
        log!($crate::LogLevel::Error, $($arg)*);
    )
}

Logs a message at the error level.

Logging at this level is disabled if the log_level = "off" cfg is present.