Class: ActionDispatch::LogSubscriber
- Inherits:
-
ActiveSupport::LogSubscriber
- Object
- ActiveSupport::Subscriber
- ActiveSupport::LogSubscriber
- ActionDispatch::LogSubscriber
- Defined in:
- actionpack/lib/action_dispatch/log_subscriber.rb
Constant Summary
Constants inherited from ActiveSupport::LogSubscriber
ActiveSupport::LogSubscriber::BLACK, ActiveSupport::LogSubscriber::BLUE, ActiveSupport::LogSubscriber::CYAN, ActiveSupport::LogSubscriber::GREEN, ActiveSupport::LogSubscriber::LEVEL_CHECKS, ActiveSupport::LogSubscriber::MAGENTA, ActiveSupport::LogSubscriber::MODES, ActiveSupport::LogSubscriber::RED, ActiveSupport::LogSubscriber::WHITE, ActiveSupport::LogSubscriber::YELLOW
Instance Attribute Summary
Attributes inherited from ActiveSupport::LogSubscriber
Attributes inherited from ActiveSupport::Subscriber
Instance Method Summary collapse
Methods inherited from ActiveSupport::LogSubscriber
attach_to, #call, flush_all!, #initialize, log_subscribers, #logger, #publish_event, #silenced?
Methods inherited from ActiveSupport::Subscriber
attach_to, #call, detach_from, #initialize, method_added, #publish_event, subscribers
Constructor Details
This class inherits a constructor from ActiveSupport::LogSubscriber
Instance Method Details
#redirect(event) ⇒ Object
7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# File 'actionpack/lib/action_dispatch/log_subscriber.rb', line 7 def redirect(event) payload = event.payload info { "Redirected to #{payload[:location]}" } info do status = payload[:status] = +"Completed #{status} #{Rack::Utils::HTTP_STATUS_CODES[status]} in #{event.duration.round}ms" << "\n\n" if defined?(Rails.env) && Rails.env.development? end end |