Simple and cute log
```rust
extern crate log; extern crate cute_log;
fn main() { cute_log::init(); info!("it works!"); } ```
timestamp
- Enables timestamp in logs. Enabled by default.color
- Enables coloring of log level. Enabled by default.The logger is made without any builtin filters.
You can either control logs through compile time features of log
crate.
Or use set_max_level
.