diff --git a/lib/private/AppFramework/Bootstrap/Coordinator.php b/lib/private/AppFramework/Bootstrap/Coordinator.php index ad55ea3912e44..6d9bcc29a7143 100644 --- a/lib/private/AppFramework/Bootstrap/Coordinator.php +++ b/lib/private/AppFramework/Bootstrap/Coordinator.php @@ -178,11 +178,11 @@ public function bootApp(string $appId): void { $application->boot($context); } } catch (QueryException $e) { - $this->logger->error("Could not boot $appId" . $e->getMessage(), [ + $this->logger->error("Could not boot $appId: " . $e->getMessage(), [ 'exception' => $e, ]); } catch (Throwable $e) { - $this->logger->emergency("Could not boot $appId" . $e->getMessage(), [ + $this->logger->emergency("Could not boot $appId: " . $e->getMessage(), [ 'exception' => $e, ]); }