logger
logger copied to clipboard
simple logging utility
Context api
Proto implementation of the proposal from #131, no tests and scoped to `#info` only for discussion purposes.
While doing some log format configuration, I came across this performance improvement. It is 4.61x slower to use `strftime` compared to `iso8601(6)`. The output format is not identical, but close...
This allows fiber keys to be GCed and removed from the map. Otherwise, fibers that call `#with_level` create a memory leak if they are abandoned without running their ensure blocks....
Cloning loggers can be used, for example, to create different loggers for different classes/components/subsystems that share the same log_dev and other configuration (possibly a subclass of Logger), but with different...
The `logger` gem is notoriously simple to use, but hard to extend. One can only observe a few of the gems that added tags / json / logstash formatting support...
Hello. We were debugging a memory leak that appeared in our rails app after we started using `with_level` method to adjust visibility of some logs. How to reproduce: ```ruby require...