🛈 Note: This is pre-release documentation for the upcoming tracing 0.2.0 ecosystem.

For the release documentation, please see docs.rs, instead.

tracing_macros

Macro trace_dbg

Source
macro_rules! trace_dbg {
    (target: $target:expr, level: $level:expr, $ex:expr) => { ... };
    (level: $level:expr, $ex:expr) => { ... };
    (target: $target:expr, $ex:expr) => { ... };
    ($ex:expr) => { ... };
}
Expand description

Alias of dbg! for avoiding conflicts with the std::dbg! macro.