inlog 0.1.1

An incremental logger with only log as a dependency.
Documentation

Inlog - An incremental logger.

Inlog is a new logger meant for simple programs that need basic log implementation.

Usage:

fn main() {
    init(log::LevelFilter::Log);

    log::info!("It works!");
    log::debug!("It debugs!");
}