From 0741373f94a0a302b3ddb7296295ed827cba4c02 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 16 Oct 2024 15:29:25 +0200 Subject: [PATCH] fix: log a warning when we can't build a background job Signed-off-by: Robin Appelman --- lib/private/BackgroundJob/JobList.php | 1 + 1 file changed, 1 insertion(+) 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; -- 2.39.5