A garishly colored and extremely simple logger - the best kind.
toml
[dependencies]
badlog = "0.2.4"
log = "0.3"
Just read src/lib.rs
. It's really short, I promise!
```rust
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.");
} ```
MIT.