diff --git a/lib/BackgroundJobs/FileCacheGCJob.php b/lib/BackgroundJobs/FileCacheGCJob.php index d4a46b93a..d17bab159 100644 --- a/lib/BackgroundJobs/FileCacheGCJob.php +++ b/lib/BackgroundJobs/FileCacheGCJob.php @@ -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()); } } }