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