macro_rules! perf_debug {
($config:expr, $($arg:tt)*) => { ... };
}Expand description
Macro for performance-sensitive debug logging.
This macro only evaluates its arguments if debug logging is enabled, avoiding the overhead of formatting when logs won’t be emitted.