blacklog 0.1.1

Fast attribute-aware asynchronous logger, port from https://github.com/3Hren/blackhole.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![cfg_attr(feature="benchmark", feature(test))]

#![feature(box_syntax)]
#![feature(plugin)]
#![feature(question_mark)]

#![plugin(peg_syntax_ext)]

extern crate chrono;
#[macro_use] extern crate quick_error;
#[cfg(feature="benchmark")] extern crate test;

pub mod layout;
mod record;
mod severity;

pub use self::record::Record;
pub use self::severity::Severity;