fabaccess-bffh/src/log.rs

14 lines
426 B
Rust
Raw Normal View History

2020-02-14 12:20:17 +01:00
use slog::{Drain, Logger};
use slog_async;
use slog_async::AsyncGuard;
2020-02-14 12:20:17 +01:00
use slog_term::{TermDecorator, FullFormat};
pub fn init() -> (Logger, AsyncGuard) {
2020-02-14 12:20:17 +01:00
let decorator = TermDecorator::new().build();
let drain = FullFormat::new(decorator).build().fuse();
let (drain, guard) = slog_async::Async::new(drain).build_with_guard();
let drain = drain.fuse();
2020-02-14 12:20:17 +01:00
return (slog::Logger::root(drain, o!()), guard);
2020-02-14 12:20:17 +01:00
}