Module tracing

Source
Expand description

Wrapper macros for tracing macros to avoid having to write cfg(feature = "tracing")-gated debug!/trace! everytime, e.g.

#[cfg(feature = "tracing")]
trace!("...");

When feature = "tracing" is inactive, these macros expand to nothing.