AppExceptionHandler.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * This file is part of Hyperf.
  5. *
  6. * @link https://www.hyperf.io
  7. * @document https://hyperf.wiki
  8. * @contact group@hyperf.io
  9. * @license https://github.com/hyperf/hyperf/blob/master/LICENSE
  10. */
  11. namespace App\Exception\Handler;
  12. use Hyperf\Contract\StdoutLoggerInterface;
  13. use Hyperf\ExceptionHandler\ExceptionHandler;
  14. use Hyperf\HttpMessage\Stream\SwooleStream;
  15. use Psr\Http\Message\ResponseInterface;
  16. use Throwable;
  17. class AppExceptionHandler extends ExceptionHandler
  18. {
  19. /**
  20. * @var StdoutLoggerInterface
  21. */
  22. protected $logger;
  23. public function __construct(StdoutLoggerInterface $logger)
  24. {
  25. $this->logger = $logger;
  26. }
  27. public function handle(Throwable $throwable, ResponseInterface $response)
  28. {
  29. $this->logger->error(sprintf('%s[%s] in %s', $throwable->getMessage(), $throwable->getLine(), $throwable->getFile()));
  30. $this->logger->error($throwable->getTraceAsString());
  31. return $response->withHeader('Server', 'Hyperf')->withStatus(500)->withBody(new SwooleStream('Internal Server Error.'));
  32. }
  33. public function isValid(Throwable $throwable): bool
  34. {
  35. return true;
  36. }
  37. }