Merge pull request #27052 from nextcloud/bugfix/noid/fix-log-entry-readability

Fix log entry readability
This commit is contained in:
kesselb 2021-05-21 20:45:55 +02:00 committed by GitHub
commit 9a80052eeb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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,
]);
}