mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Fix log entry readability
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
5432c958be
commit
f602c9328e
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