From bb82f47e233072e5edc1d75ee702840bda704fdc Mon Sep 17 00:00:00 2001 From: Maciej Szlosarczyk Date: Thu, 20 Sep 2018 13:47:19 +0300 Subject: [PATCH] Remove additional logger messages --- app/mailers/invoice_mailer.rb | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/mailers/invoice_mailer.rb b/app/mailers/invoice_mailer.rb index 7f19deb0b..74821c25a 100644 --- a/app/mailers/invoice_mailer.rb +++ b/app/mailers/invoice_mailer.rb @@ -4,8 +4,6 @@ class InvoiceMailer < ApplicationMailer def invoice_email(invoice_id, html, billing_email) @invoice = Invoice.find_by(id: invoice_id) billing_email ||= @invoice.billing_email - logger.info "Billing email from form: #{billing_email}" - logger.info "Billing email from invoice database: #{@invoice.billing_email || nil}" return unless @invoice return if whitelist_blocked?(billing_email)