5 unstable releases

0.6.2 Feb 25, 2025
0.6.1 Jan 22, 2024
0.6.0 Feb 8, 2023
0.5.0 May 17, 2022
0.1.0 May 17, 2022

#212 in Debugging

Download history 24/week @ 2024-11-13 25/week @ 2024-11-20 21/week @ 2024-11-27 32/week @ 2024-12-04 70/week @ 2024-12-11 51/week @ 2024-12-18 14/week @ 2024-12-25 21/week @ 2025-01-01 27/week @ 2025-01-08 48/week @ 2025-01-15 32/week @ 2025-01-22 33/week @ 2025-01-29 54/week @ 2025-02-05 81/week @ 2025-02-12 86/week @ 2025-02-19 245/week @ 2025-02-26

470 downloads per month
Used in spotifyctl

MIT/Apache

22KB
387 lines

lovely-env-logger

Crates.io Docs MIT/APACHE-2.0

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. Originally a fork from pretty_env_logger.

Screenshots

example default output example output with relative timestamps, short levels example output with system timestamps, file names and line numbers

Usage

Add the dependency to your Cargo.toml:

[dependencies]
log = "0.4"
lovely_env_logger = "0.6"

Add some usage to your application:

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

fn main() {
    lovely_env_logger::init_default();
    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

Dependencies

~0.4–7.5MB
~54K SLoC