]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Notifications/Ping.php
Merge pull request #11532 from tobiasd/2022.05-CHANGELOG
[friendica.git] / src / Module / Notifications / Ping.php
index 6dfb2db5af21856a5a7958d237c924e20e553290..7dc215826024dd0ccfa6a5b17c631542fec5c9db 100644 (file)
@@ -92,7 +92,7 @@ class Ping extends BaseModule
                        } else {
                                $notifications = $this->notificationRepo->selectDigestForUser(local_user());
                        }
-                       $this->logger->info('Blubb-1', ['uid' => local_user(), 'count' => count($notifications)]);
+
                        $condition = [
                                "`unseen` AND `uid` = ? AND NOT `origin` AND (`vid` != ? OR `vid` IS NULL)",
                                local_user(), Verb::getID(Activity::FOLLOW)
@@ -200,7 +200,7 @@ class Ping extends BaseModule
                                }
                        }, $notifications->getArrayCopy());
                        $navNotifications = array_filter($navNotifications);
-                       $this->logger->info('Blubb-2', ['uid' => local_user(), 'count' => count($navNotifications)]);
+
                        $sysnotify_count = array_reduce($navNotifications, function (int $carry, ValueObject\FormattedNavNotification $navNotification) {
                                return $carry + ($navNotification->seen ? 0 : 1);
                        }, 0);