Class: Padrino::Logger::Rack

Inherits:
Object
  • Object
show all
Defined in:
padrino-core/lib/padrino-core/logger.rb

Overview

Padrino::Logger::Rack forwards every request to an app given, and logs a line in the Apache common log format to the logger, or rack.errors by default.

Instance Method Summary collapse

Constructor Details

#initialize(app, uri_root) ⇒ Rack

Returns a new instance of Rack.



486
487
488
489
# File 'padrino-core/lib/padrino-core/logger.rb', line 486

def initialize(app, uri_root)
  @app = app
  @uri_root = uri_root.sub(/\/$/,"")
end

Instance Method Details

#call(env) ⇒ Object



491
492
493
494
495
496
497
# File 'padrino-core/lib/padrino-core/logger.rb', line 491

def call(env)
  env['rack.logger'] = Padrino.logger
  began_at = Time.now
  status, header, body = @app.call(env)
  log(env, status, header, began_at) if logger.debug?
  [status, header, body]
end