rustlog 0.3.2

A small, dependency-light logging crate with a pragmatic API, color (optional), groups, and a scope timer
Documentation
1
2
3
4
5
6
#[test]
fn hits_stderr_branch() {
    rustlog::set_show_time(false);
    rustlog::set_show_thread_id(false);
    rustlog::info!("stderr"); // executes Stderr arm
}