rust-simple_logger icon indicating copy to clipboard operation
rust-simple_logger copied to clipboard

A rust logger that prints all messages with a readable output format.

Results 6 rust-simple_logger issues
Sort by recently updated
recently updated
newest added

Added support for `RUST_LOG`-based module/target level filtering like in [env_logger](https://docs.rs/env_logger/0.10.1/env_logger/index.html#enabling-logging) crate ``` RUST_LOG=warn ./main ``` ``` RUST_LOG=data=debug,hardware=debug ./main ``` ``` RUST_LOG=warn,data=debug,hardware=debug ./main ```

https://stackoverflow.com/questions/61810740/log-source-file-and-line-numbers I could be wrong but I think at the moment such functionality is impossible with this library?

Feature request

attempts to close https://github.com/borntyping/rust-simple_logger/issues/76 i'm sure you'd want to make this configurable to some degree

simple_logger v4.2.0 Using: ```rust simple_logger::SimpleLogger::new() .with_level(log::LevelFilter::Warn) .with_local_timestamps() .with_colors(stdout().is_terminal()) .env() .init()?; ``` I get: ``` The application panicked (crashed). Message: Could not determine the UTC offset on this system. Consider displaying...

CVE-2020-26235

See https://rustsec.org/advisories/RUSTSEC-2021-0145.html for the advisory. It has not been patched even though an already-reviewed [PR](https://github.com/softprops/atty/pull/51) is available for a long time. several projects e.g. [clap](https://github.com/clap-rs/clap/pull/4249) and [env_logger](https://github.com/rust-cli/env_logger/commit/066c2192c187f047ae178e786ff36e6cabed21f7) switched to `is_terminal`

We use `simple_logger` as logger for our tests. We also run MIRI for some of our tests. Unfortunately, MIRI intentionally does not emulate `SystemClock` with enabled isolation, so we either...

Feature request