instance method
process_action
Ruby on Rails 5.2.8.1
Since v3.0.20 Last seen in v8.0.4Signature
process_action(event)
No documentation comment.
Parameters
-
eventreq
Source
# File actionpack/lib/action_controller/log_subscriber.rb, line 19
def process_action(event)
info do
payload = event.payload
additions = ActionController::Base.log_process_action(payload)
status = payload[:status]
if status.nil? && payload[:exception].present?
exception_class_name = payload[:exception].first
status = ActionDispatch::ExceptionWrapper.status_code_for_exception(exception_class_name)
end
message = "Completed #{status} #{Rack::Utils::HTTP_STATUS_CODES[status]} in #{event.duration.round}ms".dup
message << " (#{additions.join(" | ".freeze)})" unless additions.empty?
message << "\n\n" if defined?(Rails.env) && Rails.env.development?
message
end
end
Defined in actionpack/lib/action_controller/log_subscriber.rb line 19
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionController::LogSubscriber