Skip to main content

debug_log

Macro debug_log 

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

Emit a debug-level log message.

Dispatches to log::debug! or tracing::debug! depending on the enabled feature flag. Accepts format!-style arguments.