estk / log4rs

A highly configurable logging framework for Rust
Apache License 2.0
973 stars 143 forks source link

Refactor COLOR_MODE to OnceCell #368

Open bconn98 opened 3 months ago

bconn98 commented 3 months ago

Refactor COLOR_MODE from lazy_static to OnceCell to make it more easily testable. To maintain backward compatibility of ~1 year, once_cell can be used until MSRV reaches 1.71 when OnceCell becomes available in std library.