| Crates.io | inlog |
| lib.rs | inlog |
| version | 0.1.1 |
| created_at | 2023-09-18 21:09:07.813218+00 |
| updated_at | 2023-09-21 22:14:25.798519+00 |
| 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!");
}