From 5aa798b1dcde3806af9c89d0b6465c760707e78c Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 18 May 2022 20:10:14 +0000 Subject: [PATCH] Remove test logging --- src/Navigation/Notifications/Factory/Notification.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Navigation/Notifications/Factory/Notification.php b/src/Navigation/Notifications/Factory/Notification.php index 84db494e53..a41ba24ce1 100644 --- a/src/Navigation/Notifications/Factory/Notification.php +++ b/src/Navigation/Notifications/Factory/Notification.php @@ -118,7 +118,6 @@ class Notification extends BaseFactory implements ICanCreateFromTableRow $cachekey = 'Notification:' . $Notification->id; $result = $this->cache->get($cachekey); if (!is_null($result)) { - $this->logger->debug('Blubb-Cache', ['id' => $Notification->id, 'callstack' => System::callstack(20)]); return $result; } @@ -320,7 +319,6 @@ class Notification extends BaseFactory implements ICanCreateFromTableRow '[url=' . $link . ']' . $title . '[/url]', '[url=' . $author['url'] . ']' . $author['name'] . '[/url]'); $message['link'] = $link; - $this->logger->debug('Blubb-Set', ['id' => $Notification->id, 'callstack' => System::callstack(20)]); $this->cache->set($cachekey, $message, Duration::HOUR); } else { $this->logger->debug('Unhandled notification', ['notification' => $Notification]);