]> git.mxchange.org Git - friendica.git/commitdiff
Remove test logging
authorMichael <heluecht@pirati.ca>
Wed, 18 May 2022 20:10:14 +0000 (20:10 +0000)
committerMichael <heluecht@pirati.ca>
Wed, 18 May 2022 20:10:14 +0000 (20:10 +0000)
src/Navigation/Notifications/Factory/Notification.php

index 84db494e53dc92149ca653b39f9ea38306de4f63..a41ba24ce1f03f8fa86ab14dc329c91edf20a743 100644 (file)
@@ -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]);