minilog 0.1.0

Zero-dependency logging library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
```rs
use minilog::*;

fn main() {
    info!("This is an info message");
    warn!("This is a warning!");
    error!("This is an error!!!");
}
```

Use `--features "strip"` to remove logging from your build.

Use `--features "warn"` to hide info.

Use `--features "error"` to hide info and warnings.