#logger #logging #log

styled_env_logger

An updated version of pretty-env-logger

2 releases

Uses old Rust 2015

0.4.0 Jan 10, 2023
0.1.2 Jan 15, 2023
0.1.1 Jan 10, 2023
0.1.0 Jan 10, 2023

#624 in Debugging


Used in snowdrop

MIT/Apache

11KB
106 lines

styled-env-logger

Crates.io Docs MIT/APACHE-2.0

This is a fork of 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.

example output

Usage

Add the dependency to your Cargo.toml:

[dependencies]
log = "0.4"
styled_env_logger = "0.1"

Add some usage to your application:

extern crate styled_env_logger;
#[macro_use] extern crate log;

fn main() {
    styled_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

Credit

All credit goes to @seanmonstar, I just updated the env_logger version.

License

Licensed under either of

Dependencies

~3–4.5MB
~71K SLoC