Crate stderrlog [] [src]

A simple logger to provide symantics similar to what is expected of most UNIX utilities by logging to stderr and the higher the verbosity the higher the log level

Examples

#[macro_use]
extern crate log;
extern crate stderrlog;

fn main() {
    stderrlog::new().init().unwrap();

    info!("starting up");

    // ...
}

Structs

StdErrLog

Functions

new