Skip to main content

debug

Macro debug 

Source
macro_rules! debug {
    ( $($x:tt)+ ) => { ... };
}
Expand description

Emits a debug-level tracing event.

The macro forwards all fields and message tokens to tracing::debug!. Project code can use it without importing the tracing crate directly.