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