From 1b256c503d0f630d689b9a63e855ebac8ad00194 Mon Sep 17 00:00:00 2001 From: Christian Binder Date: Mon, 16 Nov 2009 16:43:50 +0000 Subject: [PATCH] removed unnecessary error logging --- notifications/inc/class.notifications.inc.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/notifications/inc/class.notifications.inc.php b/notifications/inc/class.notifications.inc.php index 4838d05d42..d4a4225fba 100644 --- a/notifications/inc/class.notifications.inc.php +++ b/notifications/inc/class.notifications.inc.php @@ -425,15 +425,15 @@ final class notifications { if($action == 'stop' || $action == 'fail') { break; } // stop running through chain } // check if the user has been notified at all - if(!$user_notified) { + /*if(!$user_notified) { error_log('Error: notification of receiver '.$receiver->handle.' failed for the following reasons:'); foreach($backend_errors as $id=>$backend_error) { error_log($backend_error); } - } + }*/ } catch (Exception $exception_user) { - error_log('Error: notification of receiver '.$receiver->handle.' failed: '.$exception_user->getMessage()); + //error_log('Error: notification of receiver '.$receiver->handle.' failed: '.$exception_user->getMessage()); } } return true;