From f602c9328e44011da3bdcb84a6309a96d7b8e547 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Fri, 21 May 2021 09:07:45 +0200 Subject: Fix log entry readability Signed-off-by: Joas Schilling --- lib/private/AppFramework/Bootstrap/Coordinator.php | 4 ++-- 1 file 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, ]); } -- cgit v1.2.3