14 releases
Uses old Rust 2015
0.5.0 | May 18, 2023 |
---|---|
0.4.0 | Jan 29, 2020 |
0.3.1 | Aug 16, 2019 |
0.3.0 | Dec 6, 2018 |
0.1.0 | Dec 29, 2016 |
#26 in Debugging
869,061 downloads per month
Used in 1,221 crates
(1,094 directly)
11KB
106 lines
pretty-env-logger
A simple logger built on top of env_logger. It is configured via an environment variable and writes to standard error with nice colored output for log levels.
Usage
Add the dependency to your Cargo.toml
:
[dependencies]
log = "0.4"
pretty_env_logger = "0.4"
Add some usage to your application:
extern crate pretty_env_logger;
#[macro_use] extern crate log;
fn main() {
pretty_env_logger::init();
info!("such information");
warn!("o_O");
error!("much error");
}
Then run your app with the environmental variable set:
RUST_LOG=trace cargo run
License
Licensed under either of
- Apache License, Version 2.0 (LICENSE-APACHE or http://apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
Dependencies
~3–4.5MB
~71K SLoC