diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index 6134903f4..5594d8e6b 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -41,7 +41,7 @@ class Handler extends ExceptionHandler public function report(Throwable $exception) { if ($this->shouldReport($exception)) { - Log::error($exception); + \Log::error($exception); return parent::report($exception); } }