From 76d824c16cb8c533c702266f801ecb19d31fa5bf Mon Sep 17 00:00:00 2001 From: xboard Date: Sun, 26 Jan 2025 11:59:32 +0800 Subject: [PATCH] feat: suppress InterceptResponseException logging to reduce noise --- 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 34c5452..7b789aa 100755 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -19,7 +19,8 @@ class Handler extends ExceptionHandler * @var array */ protected $dontReport = [ - ApiException::class + ApiException::class, + InterceptResponseException::class ]; /**