LICENSE NEWS README
Clogger Clogger::Format

clogger - configurable request logging for Rack

clogger is Rack middleware for logging HTTP requests. The log format is customizable so you can specify exactly which fields to log.

FEATURES

SYNOPSIS

clogger may be loaded as Rack middleware in your config.ru:

# ENV['CLOGGER_PURE'] = '1' # uncomment to disable C extension
require "clogger"
use Clogger,
    :format => :Combined,
    :path => "/path/to/log",
    :reentrant => true
run YourApplication.new

If you're using Rails 2.3.x or later, in your config/environment.rb somewhere inside the "Rails::Initializer.run do |config|" block:

config.middleware.use 'Clogger',
    :format => :Combined,
    :path => "/path/to/log",
    :reentrant => false

Instead of specifying a :path, you may also specify a :logger object that receives a "<<" method:

use Clogger, :logger=> $stdout, :reentrant => true
run YourApplication.new

VARIABLES

REQUIREMENTS

DEVELOPMENT

The latest development happens in git and is published to the following:

git clone https://YHBT.net/clogger.git
git clone https://repo.or.cz/clogger.git

You may also browse and download snapshot tarballs:

We use email for coordination and development, see below:

CONTACT

All feedback (bug reports, user/development discussion, patches, pull requests) is done via publicly-archived email:

Tor users may also access HTTP, IMAP, and NNTP archives via .onion:

AUTH=ANONYMOUS is supported for IMAP and IMAPS, and any username + password will work.

No subscription or real names will ever be required to email us. Do not send HTML email, do not top post.

Homepage: YHBT.net/clogger/

INSTALL

For RubyGems users:

gem install clogger

There is an optional C extension that should be compatible with MatzRuby. The extensions should automatically be disabled for users of other Ruby implementations, but be sure to let us know if that's not the case.


mail archives: https://YHBT.net/clogger-public/
	http://7fh6tueqddpjyxjmgtdiueylzoqt6pt7hec3pukyptlmohoowvhde4yd.onion/clogger-public/ 
	imaps://YHBT.net/inbox.comp.lang.ruby.clogger.0 
	imap://7fh6tueqddpjyxjmgtdiueylzoqt6pt7hec3pukyptlmohoowvhde4yd.onion/inbox.comp.lang.ruby.clogger.0 
	nntps://news.public-inbox.org/inbox.comp.lang.ruby.clogger 
	nntp://7fh6tueqddpjyxjmgtdiueylzoqt6pt7hec3pukyptlmohoowvhde4yd.onion/inbox.comp.lang.ruby.clogger 
	 
	 
public: clogger-public@YHBT.net
source code: git clone https://YHBT.net/clogger.git
	torsocks git clone http://7fh6tueqddpjyxjmgtdiueylzoqt6pt7hec3pukyptlmohoowvhde4yd.onion/clogger.git