Logging 1.5.1

logging version 1.5.1
by Tim P.
logging | RubyGems.org | your community gem host

== DESCRIPTION

Logging is a flexible logging library for use in Ruby programs based on
the
design of Java’s log4j library. It features a hierarchical logging
system,
custom level names, multiple output destinations per log event, custom
formatting, and more.

== CHANGES
Bugfixes

  • IO streams cannot be buffered when using syswrite
  • JRuby does not allow shared locks on write only file descriptors
  • Fixing tests for JRuby 1.6.X

On Fri, Jun 3, 2011 at 5:59 PM, Tim P. [email protected] wrote:

== CHANGES
Bugfixes

  • IO streams cannot be buffered when using syswrite
  • JRuby does not allow shared locks on write only file descriptors
  • Fixing tests for JRuby 1.6.X

FWIW, I believe MRI on Solaris raises the same error we do on any
platform; the JVM just normalizes all platforms to only allow shared
locks on readable descriptors and exclusive locks on writable
descriptors.

  • Charlie