[][src]Macro emit::trace

macro_rules! trace {
    (target: $target:expr, $s:expr, $($n:ident: $v:expr),*) => { ... };
    ($s:expr, $($n:ident: $v:expr),*) => { ... };
}

Emit a trace event to the ambient pipeline.

Examples

The example below will be emitted at the emit::LogLevel::Trace level.

This example is not tested
emdtrace!("{} called with arg {}", method: "start_frobbles()", count: 123);