fix(files_reminders): Lower disabled notifications app error to info

Signed-off-by: Louis Chemineau <louis@chmn.me>
pull/51760/head
Louis Chemineau 1 month ago committed by Louis
parent b03ffab5f0
commit 04d49452b8
  1. 2
      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;
}

Loading…
Cancel
Save