Fix log entry readability

Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/27052/head
Joas Schilling 4 years ago
parent 5432c958be
commit f602c9328e
No known key found for this signature in database
GPG Key ID: 7076EA9751AACDDA
  1. 4
      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,
]);
}

Loading…
Cancel
Save