Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix(files_reminders): Lower disabled notifications app error to info
Signed-off-by: Louis Chemineau <[email protected]>
  • Loading branch information
artonge committed Apr 1, 2025
commit 04d49452b86a3c9cc5d101836aa9dcefef027884
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public function handle(Event $event): void {
}

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;
}

Expand Down
Loading