File tree 2 files changed +15
-0
lines changed
2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change 1
1
APP_ENV = local
2
2
APP_DEBUG = true
3
+ APP_LOG_LEVEL = debug
3
4
APP_KEY = SomeRandomString
4
5
APP_URL = http://localhost
5
6
Original file line number Diff line number Diff line change 28
28
29
29
'debug ' => env ('APP_DEBUG ' , false ),
30
30
31
+ /*
32
+ |--------------------------------------------------------------------------
33
+ | Application Log Level
34
+ |--------------------------------------------------------------------------
35
+ |
36
+ | By default, Laravel will write all log messages to its log file. You
37
+ | can specify the minimum log level by setting this value to one of
38
+ | the logging levels defined in RFC 5424 and Laravel will log all
39
+ | messages greater than or equal to the configured log level.
40
+ |
41
+ */
42
+
43
+ 'log_level ' => env ('APP_LOG_LEVEL ' , 'debug ' ),
44
+
31
45
/*
32
46
|--------------------------------------------------------------------------
33
47
| Application URL
You can’t perform that action at this time.
0 commit comments