Analog is a new logger meant for simple programs that need basic log implementation.
log
```rust fn main() { init(log::LevelFilter::Log);
log::info!("It works!"); log::debug!("It debugs!");
} ```