Skip to main content

debug

Macro debug 

Source
macro_rules! debug {
    ($($arg:tt)*) => { ... };
}
Expand description

Log a debug message with format string and automatic target (module path).

Stripped at compile time when max_level_info or higher is enabled.

ยงExamples

use rslog::debug;
debug!("Value: {}", 42);