mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
22 lines
581 B
Ruby
22 lines
581 B
Ruby
module ActionMailer
|
|
class LogSubscriber < ActiveSupport::LogSubscriber
|
|
def deliver(event)
|
|
return unless logger.info?
|
|
recipients = Array(event.payload[:to]).join(', ')
|
|
info("\nSent mail to #{recipients} (#{event.duration.round(1)}ms)")
|
|
debug(event.payload[:mail])
|
|
end
|
|
|
|
def receive(event)
|
|
return unless logger.info?
|
|
info("\nReceived mail (#{event.duration.round(1)}ms)")
|
|
debug(event.payload[:mail])
|
|
end
|
|
|
|
def logger
|
|
ActionMailer::Base.logger
|
|
end
|
|
end
|
|
end
|
|
|
|
ActionMailer::LogSubscriber.attach_to :action_mailer
|