colog 1.4.0

The `colog` library is a simple formatter backend for the standard rust logging system (in the `log` crate).
Documentation
#[macro_use]
extern crate log;

fn main() {
    let mut clog = colog::default_builder();
    clog.filter(None, log::LevelFilter::Warn);
    clog.init();
    error!("error message");
    error!("error with fmt: {}", 42);
    warn!("warn message");

    /*
     * NOTE:
     *
     * The following log lines will not be printed, because the filter
     * is set to LevelFilter::Warn
     */
    info!("info message");
    debug!("debug message");
    trace!("trace message");
}