Class: Padrino::Logger::Rack
- Inherits:
-
Object
- Object
- Padrino::Logger::Rack
- Defined in:
- 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
- #call(env) ⇒ Object
-
#initialize(app, uri_root) ⇒ Rack
constructor
A new instance of Rack.
Constructor Details
#initialize(app, uri_root) ⇒ Rack
Returns a new instance of Rack.
486 487 488 489 |
# File 'lib/padrino-core/logger.rb', line 486 def initialize(app, uri_root) @app = app @uri_root = uri_root.sub(/\/$/,"") end |