We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Yes. See slog-stdlog crate and slog oldlogging examples
#[macro_use] extern crate log; extern crate slog_stdlog; fn main() { slog_stdlog::init().unwrap(); // Note: this `info!(...)` macro comes from `log` crate info!("standard logging redirected to slog"); }