macro_rules! info { ($($arg:tt)*) => { ... }; }
Logs a message with the info prefix
info
use report::info; let data = 42; info!("Data: {data}");