Merge pull request 'Adds when error gets called' (#7) from develop into master
All checks were successful
/ build (push) Successful in 35s
All checks were successful
/ build (push) Successful in 35s
Reviewed-on: #7
This commit is contained in:
commit
9e12deca4a
1 changed files with 5 additions and 0 deletions
|
@ -37,6 +37,11 @@ final class CrashHandler
|
||||||
|
|
||||||
return new CallbackHandler(
|
return new CallbackHandler(
|
||||||
function (Throwable $exception, InspectorInterface $inspector, RunInterface $run) {
|
function (Throwable $exception, InspectorInterface $inspector, RunInterface $run) {
|
||||||
|
ContainerHandler::get(Logger::class)
|
||||||
|
->emergency(
|
||||||
|
"Unexpected exception occurred: {$exception->getMessage()} at line {$exception->getLine()} in {$exception->getFile()}",
|
||||||
|
);
|
||||||
|
|
||||||
http_response_code(500);
|
http_response_code(500);
|
||||||
echo ContainerHandler::get(TemplateEngine::class)
|
echo ContainerHandler::get(TemplateEngine::class)
|
||||||
->renderErrorPage(500);
|
->renderErrorPage(500);
|
||||||
|
|
Loading…
Reference in a new issue