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

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

Logs a message at the warn level.

Logging at this level is disabled if any of the following cfgs are present: log_level = "off" or log_level = "error".