From 0476ffecdb567dc7fb4460e582e4b34182bcdb8f Mon Sep 17 00:00:00 2001 From: snipe Date: Tue, 8 May 2018 03:46:48 -0700 Subject: [PATCH] Removed debugging comments --- app/Models/Loggable.php | 2 -- 1 file changed, 2 deletions(-) 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)); }