macro_rules! slog_crit {
($($args:tt)*) => { ... };
}
👎Deprecated since 2.8.0: Use fully qualified macro slog::crit!(…) instead
Expand description
Log critical level record (alias)
Before Rust 2018, this alternate name was necessary in case of conflicts with the log
crate.
Now it is possible to simply use the prefixed path slog::crit!
.
See slog_log
for documentation.