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

                                            

                   
                                              
                        
                                                              

                                                                      


                        

                                                         






                                 
   
require 'active_support/core_ext/array/wrap'

module ActionMailer
  module Railties
    class LogSubscriber < Rails::LogSubscriber
      def deliver(event)
        recipients = Array.wrap(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
end