Class: ActiveStorage::LogSubscriber
Constant Summary
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
29
30
31
|
# File 'activestorage/lib/active_storage/log_subscriber.rb', line 29
def logger
ActiveStorage::Service.logger
end
|
#service_delete(event) ⇒ Object
17
18
19
|
# File 'activestorage/lib/active_storage/log_subscriber.rb', line 17
def service_delete(event)
info event, color("Deleted file from key: #{key_in(event)}", RED)
end
|
#service_download(event) ⇒ Object
13
14
15
|
# File 'activestorage/lib/active_storage/log_subscriber.rb', line 13
def service_download(event)
info event, color("Downloaded file from key: #{key_in(event)}", BLUE)
end
|
#service_exist(event) ⇒ Object
21
22
23
|
# File 'activestorage/lib/active_storage/log_subscriber.rb', line 21
def service_exist(event)
debug event, color("Checked if file exists at key: #{key_in(event)} (#{event.payload[:exist] ? "yes" : "no"})", BLUE)
end
|
#service_upload(event) ⇒ Object
7
8
9
10
11
|
# File 'activestorage/lib/active_storage/log_subscriber.rb', line 7
def service_upload(event)
message = "Uploaded file to key: #{key_in(event)}"
message += " (checksum: #{event.payload[:checksum]})" if event.payload[:checksum]
info event, color(message, GREEN)
end
|
#service_url(event) ⇒ Object
25
26
27
|
# File 'activestorage/lib/active_storage/log_subscriber.rb', line 25
def service_url(event)
debug event, color("Generated URL for file at key: #{key_in(event)} (#{event.payload[:url]})", BLUE)
end
|