use tracing::{debug, error, info, trace, warn}; pub fn do_record() { trace!("trace"); debug!("debug"); info!("information"); warn!("warning"); error!("error"); }