Macro slog_error

Source
macro_rules! slog_error {
    ($($args:tt)*) => { ... };
}
👎Deprecated since 2.8.0: Use fully qualified macro slog::crit!(…) instead
Expand description

Log error level record

Before Rust 2018, this alternate name was necessary in case of conflicts with the log crate.

See slog_log for documentation.