borntyping / rust-simple_logger

A rust logger that prints all messages with a readable output format.
https://crates.io/crates/simple_logger
MIT License
220 stars 48 forks source link

Added support for module level filtering #89

Open userffx opened 7 months ago

userffx commented 7 months ago

Added support for RUST_LOG-based module/target level filtering like in env_logger crate

RUST_LOG=warn ./main
RUST_LOG=data=debug,hardware=debug ./main
RUST_LOG=warn,data=debug,hardware=debug ./main