-
Couldn't load subscription status.
- Fork 97
Dawid Ciężarkiewicz edited this page Aug 3, 2016
·
19 revisions
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");
}