diff options
author | Joas Schilling <coding@schilljs.com> | 2025-06-04 06:28:10 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2025-06-04 06:28:10 +0200 |
commit | f003ca890bbc8bc210fe2866415bf4c4f6e8a704 (patch) | |
tree | 2f697b57c3a81da9b4bb9fb1517dfe11894d03a4 | |
parent | 9ec64ff578cec5492b0fe5e3f72e99a592c0af51 (diff) | |
download | nextcloud-server-debug/failing-notifications.tar.gz nextcloud-server-debug/failing-notifications.zip |
Morelocksdebug/failing-notifications
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r-- | lib/private/Notification/Manager.php | 3 |
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'); } |