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