Macro info_utils::warns

source ·
macro_rules! warns {
    ($($msg:tt)*) => { ... };
}
Expand description

Warns

Same as logs!, but more visually distinct and noticeable.

Example

    let data = "important information";
    warns!("program data: {}", data);