Skip to main content

tracef

Macro tracef 

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

Formats and prints a trace message prefixed with module path and line number.

Equivalent to C++ TRACEF.

ยงExamples

tracef!("initialized with value {}\n", val);