method
log_processing_for_request_id
v2.3.8 -
Show latest stable
- Class:
ActionController::Base
log_processing_for_request_id()private
No documentation available.
# File actionpack/lib/action_controller/base.rb, line 1310
def log_processing_for_request_id
request_id = "\n\nProcessing #{self.class.name}\##{action_name} "
request_id << "to #{params[:format]} " if params[:format]
request_id << "(for #{request_origin}) [#{request.method.to_s.upcase}]"
logger.info(request_id)
end