This commit is contained in:
Mekan1206
2026-02-19 18:11:13 +05:00
parent 78ef14b99b
commit a8599d9c79

View File

@@ -4,6 +4,8 @@ namespace App\Exceptions;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
use Throwable;
use Symfony\Component\HttpKernel\Exception\HttpException;
class Handler extends ExceptionHandler class Handler extends ExceptionHandler
{ {
@@ -29,5 +31,25 @@ class Handler extends ExceptionHandler
return response()->noContent(404); return response()->noContent(404);
} }
}); });
$this->reportable(function (Throwable $e) {
$statusCode = $e instanceof HttpException ? $e->getStatusCode() : 500;
// only real server errors
if ($statusCode < 500) {
return;
}
try {
warn(
message: get_class($e),
content: $e->getMessage(),
where: $e->getFile() . ':' . $e->getLine(),
notes: substr($e->getTraceAsString(), 0, 65000),
);
} catch (Throwable $ignored) {
// logging must never crash the app
}
});
} }
} }