codealong 0.1.1

Git analytics
Documentation
1
2
3
4
5
6
use slog::{Discard, Logger};

pub fn build_test_logger() -> Logger {
    let drain = Discard;
    Logger::root(drain, o!())
}