We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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"); }