diff --git a/app/Models/Loggable.php b/app/Models/Loggable.php index 9eea4bc5a7..a325762d4a 100644 --- a/app/Models/Loggable.php +++ b/app/Models/Loggable.php @@ -76,7 +76,6 @@ trait Loggable $checkoutClass = null; if (method_exists($target, 'notify')) { - // \Log::debug('This target is notifiable'); $target->notify(new static::$checkoutClass($params)); } @@ -84,7 +83,6 @@ trait Loggable $recipient = new \App\Models\Recipients\AdminRecipient(); 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)); }