| Crates.io | vollerei |
| lib.rs | vollerei |
| version | 0.1.7 |
| created_at | 2023-05-25 16:22:16.659953+00 |
| updated_at | 2023-05-25 18:03:26.967897+00 |
| description | ✨ Blazing fast Logging in Rust |
| homepage | https://github.com/mmlvgx/vollerei |
| repository | https://github.com/mmlvgx/vollerei |
| max_upload_size | |
| id | 874376 |
| size | 18,477 |

✨ Blazing fast Logging in Rust
Size: ~5.73 kB
Files: 8
Lines: 305
Blanks: 39
Comments: 133
Run the following Cargo command in your project directory
cargo add vollerei
Or add the following line to your Cargo.toml
vollerei = "0.1.7"
examples/basic.rs
use vollerei::logger::Logger;
fn main() {
let logger = Logger::new("example");
logger.debug("Hello, world!");
logger.info("Hello, world!");
logger.warn("Hello, world!");
logger.error("Hello, world!");
logger.critical("Hello, world!");
}
assets/basic.png
