Crates.io | inlog |
lib.rs | inlog |
version | 0.1.1 |
source | src |
created_at | 2023-09-18 21:09:07.813218 |
updated_at | 2023-09-21 22:14:25.798519 |
description | An incremental logger with only log as a dependency. |
homepage | https://github.com/BenMcAvoy/Inlog |
repository | https://github.com/BenMcAvoy/Inlog |
max_upload_size | |
id | 976249 |
size | 4,865 |
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!");
}