Fix log entry readability
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
5432c958be
commit
f602c9328e
|
@ -178,11 +178,11 @@ class Coordinator {
|
||||||
$application->boot($context);
|
$application->boot($context);
|
||||||
}
|
}
|
||||||
} catch (QueryException $e) {
|
} catch (QueryException $e) {
|
||||||
$this->logger->error("Could not boot $appId" . $e->getMessage(), [
|
$this->logger->error("Could not boot $appId: " . $e->getMessage(), [
|
||||||
'exception' => $e,
|
'exception' => $e,
|
||||||
]);
|
]);
|
||||||
} catch (Throwable $e) {
|
} catch (Throwable $e) {
|
||||||
$this->logger->emergency("Could not boot $appId" . $e->getMessage(), [
|
$this->logger->emergency("Could not boot $appId: " . $e->getMessage(), [
|
||||||
'exception' => $e,
|
'exception' => $e,
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue