Flowdock
method

log_parse_error_once

Importance_0
v6.0.0 - Show latest stable - 0 notes - Class: ActionDispatch::Http::Parameters
log_parse_error_once() 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_dispatch/http/parameters.rb, line 119
        def log_parse_error_once
          @parse_error_logged ||= begin
            parse_logger = logger || ActiveSupport::Logger.new($stderr)
            parse_logger.debug <<~MSG.chomp
              Error occurred while parsing request parameters.
              Contents:

              #{raw_post}
            MSG
          end
        end
Register or log in to add new notes.