aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2025-06-04 06:28:10 +0200
committerJoas Schilling <coding@schilljs.com>2025-06-04 06:28:10 +0200
commitf003ca890bbc8bc210fe2866415bf4c4f6e8a704 (patch)
tree2f697b57c3a81da9b4bb9fb1517dfe11894d03a4
parent9ec64ff578cec5492b0fe5e3f72e99a592c0af51 (diff)
downloadnextcloud-server-debug/failing-notifications.tar.gz
nextcloud-server-debug/failing-notifications.zip
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--lib/private/Notification/Manager.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/private/Notification/Manager.php b/lib/private/Notification/Manager.php
index 9046a3a8f0e..4d66bc1f8e4 100644
--- a/lib/private/Notification/Manager.php
+++ b/lib/private/Notification/Manager.php
@@ -172,6 +172,7 @@ class Manager implements IManager {
}
$this->notifiers[] = $notifier;
+ $this->logger->warning('✅ Manager::getNotifiers(): count()===' . count($this->notifiers));
}
$this->parsedRegistrationContext = true;
@@ -302,7 +303,7 @@ class Manager implements IManager {
*/
public function notify(INotification $notification): void {
$this->logger->warning('✅ notify(' . $notification->getApp() . ')');
- $this->logger->warning('notify::hasNotifiers' . json_encode($this->hasNotifiers()));
+ $this->logger->warning('✅ notify::hasNotifiers' . json_encode($this->hasNotifiers()));
if (!$notification->isValid()) {
throw new IncompleteNotificationException('The given notification is invalid');
}