simplelog 0.4.0

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
mod simplelog;
#[cfg(feature = "term")]
mod termlog;
mod writelog;
mod comblog;
pub mod logging;

pub use self::simplelog::SimpleLogger;
pub use self::termlog::TermLogger;
pub use self::writelog::WriteLogger;
pub use self::comblog::CombinedLogger;