testing ruby: 1.9.3, 2.0.0;
About Process Safe Logger
Process Safe Logger supports log rotations in multi-processes safely.
Objective
Ruby's standard Logger class originally have had a problem that it's log rotation function does not work safely in multi process environment. This gem fixes the problem.
The patch is already pull requested to the github.com:ruby/ruby and will be released with ruby 2.1.0.
Installation
gem install process_safe_logger
Usage
require 'process_safe_logger'
logger = ProcessSafeLogger.new('logfile.log', 3, 1024)
Option parameters are same with Ruby's Logger. See docs.ruby-lang.org:Logger.
Further Reading
- sonots:blog : RubyのLoggerはスレッドセーフ(&プロセスセーフ)かどうか調べてみた (Japanese)
- Inter-process locking for log rotation by sonots · Pull Request #428 · ruby/ruby
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
License
Same with ruby.