From: Robin Appelman Date: Wed, 16 Oct 2024 13:29:25 +0000 (+0200) Subject: fix: log a warning when we can't build a background job X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=0741373f94a0a302b3ddb7296295ed827cba4c02;p=nextcloud-server.git fix: log a warning when we can't build a background job Signed-off-by: Robin Appelman --- diff --git a/lib/private/BackgroundJob/JobList.php b/lib/private/BackgroundJob/JobList.php index f6410269d67..55521421711 100644 --- a/lib/private/BackgroundJob/JobList.php +++ b/lib/private/BackgroundJob/JobList.php @@ -291,6 +291,7 @@ class JobList implements IJobList { $class = $row['class']; $job = new $class(); } else { + $this->logger->warning('failed to create instance of background job: ' . $row['class'], ['app' => 'cron', 'exception' => $e]); // Remove job from disabled app or old version of an app $this->removeById($row['id']); return null;