Macro stlog::error [] [src]

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

Logs $string at the ERROR log level

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