macro_rules! debug { ($($arg:tt)*) => { ... }; }
Logs a message at the DEBUG level.
use traccia::{init_default, debug}; init_default(); let conn_id = 123; debug!("Connection established: {}", conn_id);