mmlvgx / vollerei

✨ Blazing fast Logging in Rust

Home Page:https://crates.io/crates/vollerei

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

vollerei

vollerei

language license

✨ Blazing fast Logging in Rust

🌼 Table of Contents

🥝 Statistics

Size: ~5.73 kB

Files: 8
Lines: 305
Blanks: 39
Comments: 133

💐 Install

📦 Cargo

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

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 basic

🍸 Links

🦀 Rust

Crates.io
Docs.rs

About

✨ Blazing fast Logging in Rust

https://crates.io/crates/vollerei

License:MIT License


Languages

Language:Rust 100.0%