Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkesselb <mail@danielkesselberg.de>2021-05-21 21:45:55 +0300
committerGitHub <noreply@github.com>2021-05-21 21:45:55 +0300
commit9a80052eebd5f317bf864507ead8f024ca89b7f3 (patch)
tree0fd7836dffd4e139b0f0c1d77a531e67c13718c8
parent3b230f9928a2f52dcd3cb90d08446b65b889a984 (diff)
parentf602c9328e44011da3bdcb84a6309a96d7b8e547 (diff)
Merge pull request #27052 from nextcloud/bugfix/noid/fix-log-entry-readability
Fix log entry readability
-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,
]);
}