Macro trace

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

Logs a message at the TRACE level.

ยงExamples

trace!("Processing item: {}", item_id);