Skip to content

Commit 9a80052

Browse files
authored
Merge pull request #27052 from nextcloud/bugfix/noid/fix-log-entry-readability
Fix log entry readability
2 parents 3b230f9 + f602c93 commit 9a80052

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/private/AppFramework/Bootstrap/Coordinator.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,11 +178,11 @@ public function bootApp(string $appId): void {
178178
$application->boot($context);
179179
}
180180
} catch (QueryException $e) {
181-
$this->logger->error("Could not boot $appId" . $e->getMessage(), [
181+
$this->logger->error("Could not boot $appId: " . $e->getMessage(), [
182182
'exception' => $e,
183183
]);
184184
} catch (Throwable $e) {
185-
$this->logger->emergency("Could not boot $appId" . $e->getMessage(), [
185+
$this->logger->emergency("Could not boot $appId: " . $e->getMessage(), [
186186
'exception' => $e,
187187
]);
188188
}

0 commit comments

Comments
 (0)