Skip to content
Dawid Ciężarkiewicz edited this page Aug 3, 2016 · 19 revisions
Can I try slog without modifying my code (too much)?

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");
 }