From 8ca30a590fa3c4a5a5b2b73409aec22fa59e0a17 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Tue, 9 Jul 2024 23:23:10 +0300 Subject: [PATCH] Change from \Log::error() to info() --- 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 3ab3c69eb143..a6f286c78d3b 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -152,7 +152,7 @@ class Handler extends ExceptionHandler parent::report($exception); if (Ninja::isSelfHost() && $exception instanceof MissingAppKeyException) { - \Log::error('To setup the app run "cp .env.example .env" followed by "php artisan key:generate"'); + info('To setup the app run "cp .env.example .env" followed by "php artisan key:generate"'); } }