]> git.mxchange.org Git - friendica.git/commitdiff
Avoid notice "Undefined property: Friendica\Util\Logger\StreamLogger::$DEBUG"
authorMichael <heluecht@pirati.ca>
Wed, 20 Oct 2021 17:50:16 +0000 (17:50 +0000)
committerMichael <heluecht@pirati.ca>
Wed, 20 Oct 2021 17:50:16 +0000 (17:50 +0000)
src/Navigation/Notifications/Depository/Notify.php

index 31ad7af0e4a0aa5fdc693ead353cc004f5cdce28..06de36c63832453900b5592772a59229e2675637 100644 (file)
@@ -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.");
                                }
                        }