1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionmailer/lib/action_mailer/log_subscriber.rb

21 lines
505 B
Ruby
Raw Normal View History

module ActionMailer
class LogSubscriber < ActiveSupport::LogSubscriber
def deliver(event)
2012-01-05 14:24:48 -05:00
recipients = Array(event.payload[:to]).join(', ')
info("\nSent mail to #{recipients} (%1.fms)" % event.duration)
debug(event.payload[:mail])
end
def receive(event)
info("\nReceived mail (%.1fms)" % event.duration)
debug(event.payload[:mail])
end
def logger
ActionMailer::Base.logger
end
end
end
2012-01-05 14:24:48 -05:00
ActionMailer::LogSubscriber.attach_to :action_mailer