From 41e48448a44b4bd5b4da6a08cbb4dd91babec081 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Tue, 21 Mar 2017 11:46:13 +0200 Subject: [PATCH] Don't log model not found errors --- app/Exceptions/Handler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index 4f69b398a1b0..9ed644515c34 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -28,9 +28,9 @@ class Handler extends ExceptionHandler */ protected $dontReport = [ TokenMismatchException::class, + ModelNotFoundException::class, //AuthorizationException::class, //HttpException::class, - //ModelNotFoundException::class, //ValidationException::class, ];