A Cargo-like logging library.
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://gituhb.com/MrNossiom/label-logger", branch = "main" }
```rust use label_logger::{info, log, success};
fn main() { info!(label: "Compiling", "the program"); log!("information without label"); log!("more informations without label"); success!(label: "Finished", "the compilation"); } ```
See examples for more use-case