Class: ActionController::LogSubscriber

Inherits:
ActiveSupport::LogSubscriber
  • Object
show all
Defined in:
lib/action_controller/log_subscriber.rb

Constant Summary collapse

INTERNAL_PARAMS =
%w(controller action format _method only_path)

Instance Method Summary collapse

Instance Method Details

#halted_callback(event) ⇒ Object



32
33
34
# File 'lib/action_controller/log_subscriber.rb', line 32

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

#loggerObject



60
61
62
# File 'lib/action_controller/log_subscriber.rb', line 60

def logger
  ActionController::Base.logger
end

#process_action(event) ⇒ Object



17
18
19
20
21
22
23
24
25
26
27
28
29
30
# File 'lib/action_controller/log_subscriber.rb', line 17

def process_action(event)
  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 #{format_duration(event.duration)}"
  message << " (#{additions.join(" | ")})" unless additions.blank?

  info(message)
end

#redirect_to(event) ⇒ Object



40
41
42
# File 'lib/action_controller/log_subscriber.rb', line 40

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

#send_data(event) ⇒ Object



44
45
46
# File 'lib/action_controller/log_subscriber.rb', line 44

def send_data(event)
  info("Sent data #{event.payload[:filename]}  (#{format_duration(event.duration)})")
end

#send_file(event) ⇒ Object



36
37
38
# File 'lib/action_controller/log_subscriber.rb', line 36

def send_file(event)
  info("Sent file #{event.payload[:path]} (#{format_duration(event.duration)})")
end

#start_processing(event) ⇒ Object



7
8
9
10
11
12
13
14
15
# File 'lib/action_controller/log_subscriber.rb', line 7

def start_processing(event)
  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