From b6d88157bf9a8bae8c71e70c5852033c176f3081 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Fri, 22 Aug 2014 17:27:36 +0000 Subject: [PATCH] disable permanent error_log --- notifications/inc/class.notifications_push.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notifications/inc/class.notifications_push.inc.php b/notifications/inc/class.notifications_push.inc.php index 8c49bbf5bc..b271685f36 100644 --- a/notifications/inc/class.notifications_push.inc.php +++ b/notifications/inc/class.notifications_push.inc.php @@ -64,7 +64,7 @@ class notifications_push implements egw_json_push_backend ), __LINE__, __FILE__, false, 'ORDER BY notify_id ASC', self::APP) as $row) { $message = json_decode($row['notify_message'], true); - error_log(__METHOD__."() already_send=$already_send, message=".array2string($message)); + //error_log(__METHOD__."() already_send=$already_send, message=".array2string($message)); if (is_array($message) && method_exists($response, $message['method'])) { call_user_func_array(array($response, $message['method']), (array)$message['data']); @@ -72,7 +72,7 @@ class notifications_push implements egw_json_push_backend $already_send = $row['notify_id']; } } - error_log(__METHOD__."() max_id=$max_id, already_sent=$already_send"); + //error_log(__METHOD__."() max_id=$max_id, already_sent=$already_send"); } /**