Laravel Exception Handler

We hade a «issue» where we wanted more logging, http logging. What i discovered was that the ExceptionHandler extends the Illuminate\Foundation\Exceptions\Handler

That handler has a internal dont report array, and by overriding it we are able to get more exceptions

protected $internalDontReport = [
    AuthenticationException::class,
    AuthorizationException::class,
    HttpException::class,
    HttpResponseException::class,
    ModelNotFoundException::class,
    SuspiciousOperationException::class,
    TokenMismatchException::class,
    ValidationException::class,
];