From f003ca890bbc8bc210fe2866415bf4c4f6e8a704 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 4 Jun 2025 06:28:10 +0200 Subject: [PATCH] Morelocks Signed-off-by: Joas Schilling --- lib/private/Notification/Manager.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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'); }