clang_log 2.0.2

Another log implementation
Documentation
1
2
3
4
5
6
7
8
9
10
use log::*;

fn main() {
    clang_log::init(Level::Trace, "clang");
    trace!("Test Trace");
    debug!("Test Debug");
    info!("Test Info");
    warn!("Test Warn");
    error!("Test Error");
}