Simple logging helper written in rust
```rust
extern crate sloggrs;
fn main() { // Log only warnings and superior (enables WARN > ERROR > FATAL logs levels) init!(WARN);
// Will **not** be logged
debug!("Some really interesting debug message");
// Will **not** be logged
info!("Random information");
// Will be logged
warn!("Some information");
// Will be logged
error!("Failed to fail!")
// Will be logged
fatal!("Picards!");
} ```