Macro trace

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

Conditionally emits a trace-level log message when the “tracing” feature is enabled.

This macro does nothing when the “tracing” feature is disabled.