mhlog 3.0.1

MHlog is a simple, thread-safe logging library.
Documentation
1
2
3
4
5
6
7
8
#[macro_use]
extern crate mhlog;

fn main() {
    debug!("This will not be printed.");
    mhlog::set_debug(true);
    debug!("Hello debug world!");
}