aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/lib/action_mailer/log_subscriber.rb
blob: a6c163832e3ca732a417c9815c4dad01be8bb5ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module ActionMailer
  class LogSubscriber < ActiveSupport::LogSubscriber
    def deliver(event)
      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

ActionMailer::LogSubscriber.attach_to :action_mailer