Macro warn

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

Logs a message at the WARNING level.

ยงExamples

use rust_loguru::warn;

warn!("This is a warning message");
warn!("Formatted message: {}", 42);