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