mhlog 3.0.1

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

use mhlog::{info,warn,err};

fn main() {
    info!("Information");
    warn!("Warning");
    err!("An error");
}