diff options
author | kesselb <mail@danielkesselberg.de> | 2021-05-21 20:45:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-21 20:45:55 +0200 |
commit | 9a80052eebd5f317bf864507ead8f024ca89b7f3 (patch) | |
tree | 0fd7836dffd4e139b0f0c1d77a531e67c13718c8 | |
parent | 3b230f9928a2f52dcd3cb90d08446b65b889a984 (diff) | |
parent | f602c9328e44011da3bdcb84a6309a96d7b8e547 (diff) | |
download | nextcloud-server-9a80052eebd5f317bf864507ead8f024ca89b7f3.tar.gz nextcloud-server-9a80052eebd5f317bf864507ead8f024ca89b7f3.zip |
Merge pull request #27052 from nextcloud/bugfix/noid/fix-log-entry-readability
Fix log entry readability
-rw-r--r-- | lib/private/AppFramework/Bootstrap/Coordinator.php | 4 |
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, ]); } |