Flowdock
method

log_processing_for_request_id

Importance_0
v2.2.1 - Show latest stable - 0 notes - Class: ActionController::Base
log_processing_for_request_id() private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_controller/base.rb, line 1225
      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
Register or log in to add new notes.