Commit 7259c265 by Michael Dyrynda

Add application log level configuration

This config option ties in with changes in fbd6e77 that were tagged in
v5.2.35 of the framework.
parent bee4dc16
APP_ENV=local APP_ENV=local
APP_DEBUG=true APP_DEBUG=true
APP_LOG_LEVEL=debug
APP_KEY=SomeRandomString APP_KEY=SomeRandomString
APP_URL=http://localhost APP_URL=http://localhost
......
...@@ -30,6 +30,20 @@ return [ ...@@ -30,6 +30,20 @@ return [
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| Application Log Level
|--------------------------------------------------------------------------
|
| By default, Laravel will write all log messages to its log file. You
| can specify the minimum log level by setting this value to one of
| the logging levels defined in RFC 5424 and Laravel will log all
| messages greater than or equal to the configured log level.
|
*/
'log_level' => env('APP_LOG_LEVEL', 'debug'),
/*
|--------------------------------------------------------------------------
| Application URL | Application URL
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| |
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment