simplelog 0.12.2

A simple and easy-to-use logging facility for Rust's log crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod comblog;
pub mod logging;
mod simplelog;
#[cfg(feature = "termcolor")]
mod termlog;
#[cfg(feature = "test")]
mod testlog;
mod writelog;

pub use self::comblog::CombinedLogger;
pub use self::simplelog::SimpleLogger;
#[cfg(feature = "termcolor")]
pub use self::termlog::{TermLogger, TerminalMode};
#[cfg(feature = "test")]
pub use self::testlog::TestLogger;
pub use self::writelog::WriteLogger;