From e041b969fcb6de85c785fed238f729c7bd58054a Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 20 Oct 2021 17:50:16 +0000 Subject: [PATCH] Avoid notice "Undefined property: Friendica\Util\Logger\StreamLogger::$DEBUG" --- src/Navigation/Notifications/Depository/Notify.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Navigation/Notifications/Depository/Notify.php b/src/Navigation/Notifications/Depository/Notify.php index 31ad7af0e4..06de36c638 100644 --- a/src/Navigation/Notifications/Depository/Notify.php +++ b/src/Navigation/Notifications/Depository/Notify.php @@ -564,7 +564,7 @@ class Notify extends BaseDepository // Is this the first email notification for this parent item and user? if (!DBA::exists('notify-threads', ['master-parent-uri-id' => $parent_uri_id, 'receiver-uid' => $params['uid']])) { - $this->logger->log("notify_id:" . intval($notify_id) . ", parent: " . intval($params['parent']) . "uid: " . intval($params['uid']), $this->logger->DEBUG); + $this->logger->info("notify_id:" . intval($notify_id) . ", parent: " . intval($params['parent']) . "uid: " . intval($params['uid'])); $fields = ['notify-id' => $notify_id, 'master-parent-uri-id' => $parent_uri_id, 'receiver-uid' => $params['uid'], 'parent-item' => 0]; @@ -573,12 +573,12 @@ class Notify extends BaseDepository $emailBuilder->setHeader('Message-ID', $message_id); $log_msg = "include/enotify: No previous notification found for this parent:\n" . " parent: ${params['parent']}\n" . " uid : ${params['uid']}\n"; - $this->logger->log($log_msg, $this->logger->DEBUG); + $this->logger->info($log_msg); } else { // If not, just "follow" the thread. $emailBuilder->setHeader('References', $message_id); $emailBuilder->setHeader('In-Reply-To', $message_id); - $this->logger->log("There's already a notification for this parent.", $this->logger->DEBUG); + $this->logger->info("There's already a notification for this parent."); } }