[][src]Macro emit::debug

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

Emit a debugging event to the ambient pipeline.

Examples

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

This example is not tested
debug!("Opening config file {}", filename: "dir/config.json");