We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3b230f9 + f602c93 commit 9a80052Copy full SHA for 9a80052
lib/private/AppFramework/Bootstrap/Coordinator.php
@@ -178,11 +178,11 @@ public function bootApp(string $appId): void {
178
$application->boot($context);
179
}
180
} catch (QueryException $e) {
181
- $this->logger->error("Could not boot $appId" . $e->getMessage(), [
+ $this->logger->error("Could not boot $appId: " . $e->getMessage(), [
182
'exception' => $e,
183
]);
184
} catch (Throwable $e) {
185
- $this->logger->emergency("Could not boot $appId" . $e->getMessage(), [
+ $this->logger->emergency("Could not boot $appId: " . $e->getMessage(), [
186
187
188
0 commit comments