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