Macro stlog::warn [] [src]

macro_rules! warn {
    ($logger:expr, $string:expr) => { ... };
    ($string:expr) => { ... };
}

Logs $string at the WARN log level

$logger is the logger through which the string will be logged. If omitted the global logger will be used.