macro_rules! log_warn { ($($arg:tt)*) => { ... }; }
Log a warning message to stderr.
log::warn!("Cache miss for key: {}", "user:123"); log::warn!("Slow query detected: {}ms", 150);