From 004e4766d6551407fab2884cc6ffd56c239d81c7 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Mon, 8 Jan 2018 09:32:28 +0200 Subject: [PATCH] Don't log validation errors --- app/Exceptions/Handler.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index e955e64cc91e..54df4167eab3 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -30,9 +30,10 @@ class Handler extends ExceptionHandler protected $dontReport = [ TokenMismatchException::class, ModelNotFoundException::class, + ValidationException::class, + \Illuminate\Validation\ValidationException::class, //AuthorizationException::class, //HttpException::class, - //ValidationException::class, ]; /**