TwP / logging

A flexible logging library for use in Ruby programs based on the design of Java's log4j library.
https://rubygems.org/gems/logging
MIT License
530 stars 101 forks source link

Fixes for JRuby #237

Closed TwP closed 2 years ago

TwP commented 2 years ago

This PR includes two fixes for JRuby:

The fix here is to no longer create copies of STDOUT and STDERR. Instead, we just check if the underlying IO object is one of these two and then don't bother closing them.

bklang commented 2 years ago

🎉Thank you!