Module: Roda::RodaPlugins::CommonLogger

Defined in:
lib/roda/plugins/common_logger.rb

Overview

The common_logger plugin adds common logger support to Roda applications, similar to Rack::CommonLogger, with the following differences:

  • Better performance

  • Doesn’t include middleware timing

  • Doesn’t proxy the body

  • Doesn’t support different capitalization of the Content-Length response header

  • Logs to $stderr instead of env['rack.errors'] if explicit logger not passed

Example:

plugin :common_logger
plugin :common_logger, $stdout
plugin :common_logger, Logger.new('filename')
plugin :common_logger, Logger.new('filename'), method: :debug

Defined Under Namespace

Modules: InstanceMethods

Class Method Summary collapse

Class Method Details

.configure(app, logger = nil, opts = OPTS) ⇒ Object



26
27
28
29
# File 'lib/roda/plugins/common_logger.rb', line 26

def self.configure(app, logger=nil, opts=OPTS)
  app.opts[:common_logger] = logger || app.opts[:common_logger] || $stderr
  app.opts[:common_logger_meth] = app.opts[:common_logger].method(opts.fetch(:method){logger.respond_to?(:write) ? :write : :<<})
end

.start_timerObject

:nocov:



33
34
35
# File 'lib/roda/plugins/common_logger.rb', line 33

def self.start_timer
  Process.clock_gettime(Process::CLOCK_MONOTONIC)
end