Skip to content

Commit

Permalink
fix(FileCacheGCJob): Turn error into a warning and make it clearer wh…
Browse files Browse the repository at this point in the history
…at's needed to fix it

fixes #2105

Signed-off-by: Marcel Klehr <[email protected]>
  • Loading branch information
marcelklehr committed Jan 18, 2025
1 parent 9a16add commit 5481bef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/BackgroundJobs/FileCacheGCJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ protected function run($argument) : void {
try {
$this->fileCache->gc();
} catch (NotPermittedException $e) {
$this->logger->error('Could not collect garbage: ' . $e->getMessage());
$this->logger->warning('Could not collect garbage: Missing permissions: ' . $e->getMessage());
}
}
}

0 comments on commit 5481bef

Please sign in to comment.