diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index f037570648b6bc3516693071fa1113d81a3277f9..de890d3e4da21edd38426f5c44a54c4de248851f 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); } }