Removed debugging comments

This commit is contained in:
snipe 2018-05-08 03:46:48 -07:00
parent 47a0400a72
commit 0476ffecdb

View file

@ -76,7 +76,6 @@ trait Loggable
$checkoutClass = null; $checkoutClass = null;
if (method_exists($target, 'notify')) { if (method_exists($target, 'notify')) {
// \Log::debug('This target is notifiable');
$target->notify(new static::$checkoutClass($params)); $target->notify(new static::$checkoutClass($params));
} }
@ -84,7 +83,6 @@ trait Loggable
$recipient = new \App\Models\Recipients\AdminRecipient(); $recipient = new \App\Models\Recipients\AdminRecipient();
if (($settings->admin_cc_email!='') && (static::$checkoutClass!='')) { if (($settings->admin_cc_email!='') && (static::$checkoutClass!='')) {
// \Log::debug('Send an email to the admin - '.$settings->admin_cc_email);
$recipient->notify(new static::$checkoutClass($params)); $recipient->notify(new static::$checkoutClass($params));
} }