1 macro_rules! trace {
2     ($($arg:tt)*) => {
3         #[cfg(feature = "tracing")]
4         tracing::trace!($($arg)*);
5     };
6 }
7