mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
Merge pull request #27052 from nextcloud/bugfix/noid/fix-log-entry-readability
Fix log entry readability
This commit is contained in:
commit
9a80052eeb
1 changed files with 2 additions and 2 deletions
|
|
@ -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…
Reference in a new issue