Macro warn

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

Logs a message at the WARN level. The message is formatted using standard Rust formatting.

ยงExample

use loggit::warn;

warn!("Warning: check configuration!");