macro_rules! log { ($($msg:tt)*) => { ... }; }
Logs noncritical information to the console.
Example
let data = "important information"; log!("program data: {}", data);