Merge pull request #27052 from nextcloud/bugfix/noid/fix-log-entry-readability
Fix log entry readability
This commit is contained in:
commit
9a80052eeb
|
@ -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 New Issue