0.02
No commit activity in last 3 years
No release in over 3 years
buffered-logger is designed to be used in multithreaded or multifiber rack servers and includes a middleware to automatically capture and write the buffered log statements during each request. This is ideal for keeping requests together for log parsing software such as splunk.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 0.13.3
~> 10.0.4
 Project Readme

Build Status Gem Version Dependency Status Code Climate

buffered-logger

buffered-logger is a concurrency safe logger. It buffers each logging statement and writes to the log file all at once.

Description

buffered-logger is designed to be used in multithreaded or multifiber rack servers and includes a middleware to automatically capture and write the buffered log statements during each request. This is ideal for keeping requests together for log parsing software such as splunk.

Installation

If you're using rails, add this line your application's Gemfile:

gem "buffered-logger", require: "buffered_logger/rails"

Otherwise add this line to your application's Gemfile:

gem "buffered-logger"

And then execute:

$ bundle install

Or install it yourself as:

$ gem install buffered-logger

Usage

require "buffered_logger"

MyApp.logger = BufferedLogger.new("myapp.log")

use BufferedLogger::Middleware, MyApp.logger
run MyApp

Contributing

Fork, branch & pull request.