refactor: cleanup debug logs and add explicit exit in error handling flow

- Remove redundant `error_log` statements in `RouterSetup`
- Comment out unused route analysis and subdomain checks
- Add `exit()` after error rendering in `ErrorKernel`
This commit is contained in:
2025-11-03 15:59:32 +01:00
parent 0ca382f80b
commit c4a4f6de07
2 changed files with 4 additions and 19 deletions

View File

@@ -21,6 +21,8 @@ final readonly class ErrorKernel
$this->rendererFactory->getRenderer()->render();
exit();
return null;
}
}