summaryrefslogtreecommitdiff
path: root/vendor/tokio-util/src/tracing.rs
blob: e1e9ed0827fb8de546ab07371d9e3e99423f3621 (plain)
1
2
3
4
5
6
macro_rules! trace {
    ($($arg:tt)*) => {
        #[cfg(feature = "tracing")]
        tracing::trace!($($arg)*);
    };
}