Skip to main content

warn

Macro warn 

Source
macro_rules! warn {
    ($($arg:tt)*) => { ... };
}
Expand description

Prints warn log message to stderr without a new line.

§Examples

use hand::*;

warn!("test warn"); // ⚠ test warn
warn!("no more warnings {}", "i said"); // ⚠ no more warnings i said