summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/private/AppFramework/Bootstrap/Coordinator.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/AppFramework/Bootstrap/Coordinator.php b/lib/private/AppFramework/Bootstrap/Coordinator.php
index ad55ea3912e..6d9bcc29a71 100644
--- a/lib/private/AppFramework/Bootstrap/Coordinator.php
+++ b/lib/private/AppFramework/Bootstrap/Coordinator.php
@@ -178,11 +178,11 @@ class Coordinator {
$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,
]);
}