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