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.
macro_rules! debug_log {
($($arg:tt)*) => { ... };
}Emit a debug-level log message.
Dispatches to log::debug! or tracing::debug! depending on the
enabled feature flag. Accepts format!-style arguments.