Label Logger

Label Logger

"A Cargo-like logging library."

Installation

This library is still under development and breaking API changes can happen at all time.

Add this to your Cargo.toml

toml label-logger = { git = "https://github.com/MrNossiom/label-logger", branch = "main" }

Usage

```rust use label_logger::{info, log, success};

info!(label: "Compiling", "the program"); log!("information without label"); log!("more informations without label"); success!(label: "Finished", "the compilation"); ```

The library also includes themes for dialoguer (a library to prompt the user in the terminal) and indicatif (to show nice progress bars).

See examples for more use-case.

Credits