Macro stlog::debug [] [src]

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

Logs $string at the DEBUG log level

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