//! Common tracing-related items intended to be wildcard imported in most //! modules: //! //! ``` //! use crate::observability::prelude::*; //! ``` //! //! This avoids diff churn in the imports when adding/removing log statements. //! //! [`tracing`] is re-exported as `t`, to avoid name collisions. #![allow(unused)] pub(crate) use tracing as t; pub(crate) use tracing::Instrument;