From c4d9deabef9698276e6b21510776068ca926e69f Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Mon, 13 Nov 2023 21:17:17 +0100 Subject: [PATCH] Add debugging statement to report exceptions in development environment --- app/Exceptions/Handler.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index 1ac36da85..b4f63661c 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -55,6 +55,7 @@ public function register(): void { $this->reportable(function (Throwable $e) { if (isDev()) { + ray($e); return; } $this->settings = InstanceSettings::get();