log::error! [] [src]

macro_rules! error {
    (target: $target:expr, $($arg:tt)*) => (
        log!(target: $target, $crate::LogLevel::Error, $($arg)*);
    );
    ($($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.