Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: mixellent/logging

Tags

logging-1.7.2

Toggle logging-1.7.2's commit message
Updating history and a version bump for release

logging-1.7.1

Toggle logging-1.7.1's commit message
version bump and history edit for release

logging-1.7.0

Toggle logging-1.7.0's commit message
Changing to the MIT license.

closes TwP#24

logging-1.6.2

Toggle logging-1.6.2's commit message
Using built in Time yamlization

When serializing timestamps to YAML format it is better to just let the YAML
layer handle it instead of converting the time to a string ourselves. The JSON
serialization of time now uses a timestamp in ISO8601 format with
microseconds.

logging-1.6.1

Toggle logging-1.6.1's commit message
History edit and version bump in preparate for a release.

logging-1.6.0

Toggle logging-1.6.0's commit message
Returning a duplicate list of appenders

logging-1.5.2

Toggle logging-1.5.2's commit message
version bump

logging-1.5.1

Toggle logging-1.5.1's commit message
updating version and history for release

logging-1.5.0

Toggle logging-1.5.0's commit message
ignoring the tmp folder

logging-1.4.3

Toggle logging-1.4.3's commit message
Calling super within a block is broken.

A regression was introduced into ruby 1.8.7 after p174 that breaks the ability
to call "super" within a block. The rolling file appender relies on this
ability to wrap up writes to the log file inside an "flock" block.

The fix is to alias the write method and then call the alias from within the
block.