this is in fact another logging Library
```rust
use NALL::plog::log;
fn main() {
log(NALL::levels::LogLevel::Info, "Hi I am an info".to_string())
// there are also Warn, Err, Fatal
// NOTE: using Fatal will kill your program with exit code 1!
}
```
```bash
```