belog 0.1.0

A minimal and pretty log impplementation for the log crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[macro_use]
extern crate log;
extern crate belog;

fn main() {
    // Initializes the logger with the max_level set to info.
    belog::init_with_level(log::Level::Trace);

    info!("some info");
    warn!("some warn log");
    error!("some error log");
    debug!("some debug log");
    trace!("some trace log");
}