Class: ActionController::LogSubscriber

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

Constant Summary collapse

INTERNAL_PARAMS =
%w(controller action format _method only_path)

Constants inherited from ActiveSupport::LogSubscriber

ActiveSupport::LogSubscriber::BLACK, ActiveSupport::LogSubscriber::BLUE, ActiveSupport::LogSubscriber::BOLD, ActiveSupport::LogSubscriber::CLEAR, ActiveSupport::LogSubscriber::CYAN, ActiveSupport::LogSubscriber::GREEN, ActiveSupport::LogSubscriber::MAGENTA, ActiveSupport::LogSubscriber::RED, ActiveSupport::LogSubscriber::WHITE, ActiveSupport::LogSubscriber::YELLOW

Instance Method Summary collapse

Methods inherited from ActiveSupport::LogSubscriber

attach_to, #call, flush_all!, flushable_loggers, log_subscribers, logger

Instance Method Details

#loggerObject



56
57
58
# File 'actionpack/lib/action_controller/log_subscriber.rb', line 56

def logger
  ActionController::Base.logger
end

#process_action(event) ⇒ Object



17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'actionpack/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?
    status = Rack::Utils.status_code(ActionDispatch::ShowExceptions.rescue_responses[payload[:exception].first]) rescue nil 
  end 
  message = "Completed #{status} #{Rack::Utils::HTTP_STATUS_CODES[status]} in %.0fms" % event.duration
  message << " (#{additions.join(" | ")})" unless additions.blank?

  info(message)
end

#redirect_to(event) ⇒ Object



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

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

#send_data(event) ⇒ Object



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

def send_data(event)
  info("Sent data %s (%.1fms)" % [event.payload[:filename], event.duration])
end

#send_file(event) ⇒ Object



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

def send_file(event)
  message = "Sent file %s"
  message << " (%.1fms)"
  info(message % [event.payload[:path], event.duration])
end

#start_processing(event) ⇒ Object



7
8
9
10
11
12
13
14
15
# File 'actionpack/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