| Crates.io | minilog |
| lib.rs | minilog |
| version | 0.1.0 |
| created_at | 2023-10-04 06:42:26.616806+00 |
| updated_at | 2023-10-04 06:42:26.616806+00 |
| description | Zero-dependency logging library. |
| homepage | |
| repository | https://github.com/zX3no/log |
| max_upload_size | |
| id | 991913 |
| size | 10,892 |
use minilog::*;
fn main() {
info!("This is an info message");
warn!("This is a warning!");
error!("This is an error!!!");
}
Use --features "strip" to remove logging from your build.
Use --features "warn" to hide info.
Use --features "error" to hide info and warnings.