A Rust library that implements application-level logging with a simple, readable output format
Website âĸ Documentation âĸ Report Bug âĸ Request Feature âĸ Contributing Guidelines
Rust Logs (RLG) is a library that implements application-level logging in a simple, readable output format. The library provides logging APIs and various helper macros that simplify many common logging tasks.
ALL
, DEBUG
, DISABLED
, ERROR
,
FATAL
, INFO
, NONE
, TRACE
, VERBOSE
and WARNING
,It takes just a few minutes to get up and running with rlg
.
rlg
requires Rust 1.67.0 or later.
âšī¸ Info: Please check out our website for more information and find our documentation on docs.rs, lib.rs and crates.io.
To use rlg
in your project, add the following to your
Cargo.toml
file:
toml
[dependencies]
rlg = "0.0.1"
Add the following to your main.rs
file:
rust
extern crate rlg;
use rlg::*;
then you can use the functions in your application code.
RLG
comes with a set of examples that you can use to get started. The
examples are located in the examples
directory of the project. To run
the examples, clone the repository and run the following command in your
terminal from the project root directory.
shell
cargo run --example rlg
For transparency into our release cycle and in striving to maintain
backward compatibility, QRC
follows semantic versioning.
The project is licensed under the terms of both the MIT license and the Apache License (Version 2.0).
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
A big thank you to all the awesome contributors of Mini Functions for their help and support.