Skip to main content

trace

Macro trace 

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

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

Stripped at compile time when max_level_debug or higher is enabled.

ยงExamples

use rslog::trace;
trace!("Entering function with args: {}", 42);