macro_rules! warn { ($($msg:tt)*) => { ... }; }
Same as log!, but more visually distinct and noticeable.
log!
Example
let data = "important information"; warn!("program data: {}", data);