badlog

Cargo Docs.rs

A garishly colored and extremely simple logger - the best kind.

Installation

toml [dependencies] badlog = "1.0" log = "0.3"

Usage

  1. Call one of the initializers.
  2. Use the standard log crate macros.
  3. That's it!

Example

```rust

[macro_use] extern crate log;

extern crate badlog;

fn main() { badlog::initfromenv("LOG_LEVEL");

trace!("Unimportant details.");
debug!("Debugging information.");
info!("Hello, World!");
warn!("Uh, captain, I think we're going down...");
error!("IT'S THE END.");

} ```

License

MIT.