macro_rules! slog_warn {
($($args:tt)*) => { ... };
}
👎Deprecated since 2.8.0: Use fully qualified macro slog::warn!(…) instead
Expand description
Log warning level record (alias)
Before Rust 2018, this alternate name was necessary in case of conflicts with the log
crate.
See slog_log
for documentation.