aboutsummaryrefslogblamecommitdiffstats
path: root/actionmailer/lib/action_mailer/log_subscriber.rb
blob: 3fe64759ac544651bb24f7a0f8b81b00de342e00 (plain) (tree)
1
2
3
4
5
6
7
8
9
10


                                                    
                                
                                                       
                                                                         



                                 

                                                            








                                 
                                                    
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