Methods
- D
- H
- L
- P
- R
- S
- U
Constants
INTERNAL_PARAMS | = | %w(controller action format _method only_path) |
Instance Public methods
deep_munge(event)
Link
# File actionpack/lib/action_controller/log_subscriber.rb, line 56 def deep_munge(event) message = "Value for params[:#{event.payload[:keys].join('][:')}] was set " "to nil, because it was one of [], [null] or [null, null, ...]. " "Go to http://guides.rubyonrails.org/security.html#unsafe-query-generation " "for more information." debug(message) end
halted_callback(event)
Link
logger()
Link
process_action(event)
Link
# File actionpack/lib/action_controller/log_subscriber.rb, line 18 def process_action(event) return unless logger.info? 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" message << " (#{additions.join(" | ")})" unless additions.blank? info(message) end
redirect_to(event)
Link
send_data(event)
Link
send_file(event)
Link
start_processing(event)
Link
# File actionpack/lib/action_controller/log_subscriber.rb, line 6 def start_processing(event) return unless logger.info? payload = event.payload params = payload[:params].except(*INTERNAL_PARAMS) format = payload[:format] format = format.to_s.upcase if format.is_a?(Symbol) info "Processing by #{payload[:controller]}##{payload[:action]} as #{format}" info " Parameters: #{params.inspect}" unless params.empty? end