From 7a1b17ff6a9876bd408f8741e409acea49f1a6f7 Mon Sep 17 00:00:00 2001 From: snipe Date: Mon, 16 May 2022 15:59:41 -0700 Subject: [PATCH] =?UTF-8?q?Backslash=20log::=20(we=20shouldn=E2=80=99t=20h?= =?UTF-8?q?ave=20to=20do=20this=20tho=3F)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: snipe --- app/Exceptions/Handler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } }