aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-05-21 09:07:45 +0200
committerJoas Schilling <coding@schilljs.com>2021-05-21 09:07:45 +0200
commitf602c9328e44011da3bdcb84a6309a96d7b8e547 (patch)
tree4e1db81c10a001d38227d1f44ded5ae099453bef
parent5432c958be918bece086ccf32ffd86f68bbda675 (diff)
downloadnextcloud-server-f602c9328e44011da3bdcb84a6309a96d7b8e547.tar.gz
nextcloud-server-f602c9328e44011da3bdcb84a6309a96d7b8e547.zip
Fix log entry readability
Signed-off-by: Joas Schilling <coding@schilljs.com>
-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,
]);
}