Macro info_utils::warn

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

Warn

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

Example

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