A simple logger with coloring support
```rust
extern crate log; extern crate mowl;
fn main() { mowl::init().unwrap(); warn!("Warning"); } ```