Class: ActionController::LogSubscriber
Constant Summary
collapse
- INTERNAL_PARAMS =
%w(controller action format _method only_path)
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 Attribute Summary
#patterns
Instance Method Summary
collapse
#finish, flush_all!, log_subscribers, #start
attach_to, #finish, #initialize, method_added, #start, subscribers
Instance Method Details
#halted_callback(event) ⇒ Object
37
38
39
|
# File 'actionpack/lib/action_controller/log_subscriber.rb', line 37
def halted_callback(event)
info { "Filter chain halted as #{event.payload[:filter].inspect} rendered or redirected" }
end
|
72
73
74
|
# File 'actionpack/lib/action_controller/log_subscriber.rb', line 72
def logger
ActionController::Base.logger
end
|
#process_action(event) ⇒ Object
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# File 'actionpack/lib/action_controller/log_subscriber.rb', line 19
def process_action(event)
info do
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".dup
message << " (#{additions.join(" | ".freeze)})" unless additions.empty?
message << "\n\n" if defined?(Quails.env) && Quails.env.development?
message
end
end
|
#redirect_to(event) ⇒ Object
45
46
47
|
# File 'actionpack/lib/action_controller/log_subscriber.rb', line 45
def redirect_to(event)
info { "Redirected to #{event.payload[:location]}" }
end
|
#send_data(event) ⇒ Object
49
50
51
|
# File 'actionpack/lib/action_controller/log_subscriber.rb', line 49
def send_data(event)
info { "Sent data #{event.payload[:filename]} (#{event.duration.round(1)}ms)" }
end
|
#send_file(event) ⇒ Object
41
42
43
|
# File 'actionpack/lib/action_controller/log_subscriber.rb', line 41
def send_file(event)
info { "Sent file #{event.payload[:path]} (#{event.duration.round(1)}ms)" }
end
|
#start_processing(event) ⇒ Object
7
8
9
10
11
12
13
14
15
16
17
|
# File 'actionpack/lib/action_controller/log_subscriber.rb', line 7
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
|
#unpermitted_parameters(event) ⇒ Object
53
54
55
56
57
58
|
# File 'actionpack/lib/action_controller/log_subscriber.rb', line 53
def unpermitted_parameters(event)
debug do
unpermitted_keys = event.payload[:keys]
"Unpermitted parameter#{'s' if unpermitted_keys.size > 1}: #{unpermitted_keys.map { |e| ":#{e}" }.join(", ")}"
end
end
|