pub fn init_with_level(level: Level) -> Result<(), SetLoggerError>
Expand description
Register slog-stdlog
as log
backend.
Pass a log::Level to do the log filter explicitly.
This will pass all logging statements crated with log
crate to current slog-scope::logger()
.
#[macro_use]
extern crate log;
#[macro_use(slog_o, slog_kv)]
extern crate slog;
extern crate slog_stdlog;
extern crate slog_scope;
extern crate slog_term;
extern crate slog_async;
use slog::Drain;
fn main() {
let decorator = slog_term::TermDecorator::new().build();
let drain = slog_term::FullFormat::new(decorator).build().fuse();
let drain = slog_async::Async::new(drain).build().fuse();
let logger = slog::Logger::root(drain, slog_o!("version" => env!("CARGO_PKG_VERSION")));
let _scope_guard = slog_scope::set_global_logger(logger);
let _log_guard = slog_stdlog::init_with_level(log::Level::Error).unwrap();
// Note: this `info!(...)` macro comes from `log` crate
info!("standard logging redirected to slog");
error!("standard logging redirected to slog");
}