hp-log 0.3.1

try to implement high performance log :w
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod file_appender;
pub mod console_appender;

pub use self::file_appender::FileAppender;
pub use self::console_appender::ConsoleAppender;
use crate::event::LogicEvent;

pub trait Appender: Send {
    fn append(&mut self, log: &LogicEvent, flush: bool);
}