1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 05:02:36 +01:00

Change from \Log::error() to info()

This commit is contained in:
Hillel Coren 2024-07-09 23:23:10 +03:00
parent b35eddd54b
commit 8ca30a590f

View File

@ -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"');
}
}