log_warn

Macro log_warn 

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

Log a warning message to stderr.

ยงExamples

log::warn!("Cache miss for key: {}", "user:123");
log::warn!("Slow query detected: {}ms", 150);