4 releases (stable)
new 2.0.3 | Nov 17, 2024 |
---|---|
1.0.1 | Nov 17, 2024 |
0.1.0 | Nov 16, 2024 |
#268 in Debugging
213 downloads per month
6KB
50 lines
clang_log
I really like the logging format of clang
(pronounced klang, not C-lang), so I recreated it as an implementation of the log
crate. It's licensed under the MIT license, and you can use it as you like. Use it, fork it, steal the code and sell it, I don't really care. If you find bugs, first of all, good job, because how can a logging implementation have bugs, and second of all, you can submit them to the issue tracker, or fix them and submit a PR. Additionally, if you want to improve clang_log
, go ahead and waste five minuites writing a PR to change something.
How to use
To use clang_log
, first include it, and log
in Cargo.toml
:
[dependencies]
log = "0.4.22"
clang_log = "1.0.2"
Then, initialize it at the start of the program:
use log::LogLevels;
fn main() {
clang_log::init(LogLevels::Trace, "clang")
}
To use it, just use the macros provided by log
use log::*;
error!("Could not find files!");
Dependencies
~0.1–10MB
~44K SLoC