log_subscriber.rb 2.3 KB
Newer Older
1 2 3 4 5 6

module ActionController
  class LogSubscriber < ActiveSupport::LogSubscriber
    INTERNAL_PARAMS = %w(controller action format _method only_path)

    def start_processing(event)
7 8
      return unless logger.info?

9 10
      payload = event.payload
      params  = payload[:params].except(*INTERNAL_PARAMS)
J
José Valim 已提交
11 12
      format  = payload[:format]
      format  = format.to_s.upcase if format.is_a?(Symbol)
13

14
      info "Processing by #{payload[:controller]}##{payload[:action]} as #{format}"
15 16 17 18
      info "  Parameters: #{params.inspect}" unless params.empty?
    end

    def process_action(event)
19 20
      return unless logger.info?

21 22 23
      payload   = event.payload
      additions = ActionController::Base.log_process_action(payload)

24 25
      status = payload[:status]
      if status.nil? && payload[:exception].present?
26 27
        exception_class_name = payload[:exception].first
        status = ActionDispatch::ExceptionWrapper.status_code_for_exception(exception_class_name)
28
      end
29
      message = "Completed #{status} #{Rack::Utils::HTTP_STATUS_CODES[status]} in #{event.duration.round}ms"
30 31 32 33 34
      message << " (#{additions.join(" | ")})" unless additions.blank?

      info(message)
    end

35
    def halted_callback(event)
36
      info("Filter chain halted as #{event.payload[:filter]} rendered or redirected")
37 38
    end

39
    def send_file(event)
40
      info("Sent file #{event.payload[:path]} (#{event.duration.round(1)}ms)")
41 42 43
    end

    def redirect_to(event)
44
      info("Redirected to #{event.payload[:location]}")
45 46 47
    end

    def send_data(event)
48
      info("Sent data #{event.payload[:filename]} (#{event.duration.round(1)}ms)")
49 50
    end

51 52 53 54 55
    def unpermitted_parameters(event)
      unpermitted_keys = event.payload[:keys]
      debug("Unpermitted parameters: #{unpermitted_keys.join(", ")}")
    end

56 57 58 59
    %w(write_fragment read_fragment exist_fragment?
       expire_fragment expire_page write_page).each do |method|
      class_eval <<-METHOD, __FILE__, __LINE__ + 1
        def #{method}(event)
60
          return unless logger.info?
61 62
          key_or_path = event.payload[:key] || event.payload[:path]
          human_name  = #{method.to_s.humanize.inspect}
63
          info("\#{human_name} \#{key_or_path} (\#{event.duration.round(1)}ms)")
64 65 66 67 68 69 70 71 72 73
        end
      METHOD
    end

    def logger
      ActionController::Base.logger
    end
  end
end

74
ActionController::LogSubscriber.attach_to :action_controller