log
===
A Rust library for application logging via debug/info/warn/error macros
[](https://travis-ci.org/rust-lang/log)
[Documentation](http://doc.rust-lang.org/log)
Add this to your `Cargo.toml`:
```toml
[dependencies]
log = "0.1.0"
```
and this to your crate root:
```rust
extern crate log;
```