From 04d49452b86a3c9cc5d101836aa9dcefef027884 Mon Sep 17 00:00:00 2001 From: Louis Chemineau Date: Thu, 27 Mar 2025 16:28:58 +0100 Subject: [PATCH] fix(files_reminders): Lower disabled notifications app error to info Signed-off-by: Louis Chemineau --- .../lib/Listener/LoadAdditionalScriptsListener.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_reminders/lib/Listener/LoadAdditionalScriptsListener.php b/apps/files_reminders/lib/Listener/LoadAdditionalScriptsListener.php index a0173aabc64..40aef1f9f69 100644 --- a/apps/files_reminders/lib/Listener/LoadAdditionalScriptsListener.php +++ b/apps/files_reminders/lib/Listener/LoadAdditionalScriptsListener.php @@ -31,7 +31,7 @@ class LoadAdditionalScriptsListener implements IEventListener { } if (!$this->appManager->isEnabledForUser('notifications')) { - $this->logger->error('Failed to register the `files_reminders` app. This could happen due to the `notifications` app being disabled.', ['app' => 'files_reminders']); + $this->logger->info('Skipped registering the `files_reminders` app because the `notifications` app is disabled.', ['app' => 'files_reminders']); return; }