Add debugging statement to report exceptions in

development environment
This commit is contained in:
Andras Bacsai 2023-11-13 21:17:17 +01:00
parent 776b1cb68d
commit c4d9deabef

View File

@ -55,6 +55,7 @@ class Handler extends ExceptionHandler
{ {
$this->reportable(function (Throwable $e) { $this->reportable(function (Throwable $e) {
if (isDev()) { if (isDev()) {
ray($e);
return; return;
} }
$this->settings = InstanceSettings::get(); $this->settings = InstanceSettings::get();