Skip to content

Commit

Permalink
Merge pull request #27052 from nextcloud/bugfix/noid/fix-log-entry-re…
Browse files Browse the repository at this point in the history
…adability

Fix log entry readability
  • Loading branch information
kesselb authored May 21, 2021
2 parents 3b230f9 + f602c93 commit 9a80052
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/private/AppFramework/Bootstrap/Coordinator.php
Original file line number Diff line number Diff line change
Expand Up @@ -178,11 +178,11 @@ public function bootApp(string $appId): void {
$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,
]);
}
Expand Down

0 comments on commit 9a80052

Please sign in to comment.