- Timestamp:
- 10/24/21 13:43:10 (3 years ago)
- Branches:
- develop, master
- Children:
- 897df21
- Parents:
- cbd482b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
config/logging.php
rcbd482b r51b783f 18 18 */ 19 19 20 'default' => env('LOG_CHANNEL', 'stack'),20 // 'default' => env('LOG_CHANNEL', 'stack'), 21 21 22 22 /* … … 35 35 */ 36 36 37 'channels' => [ 38 'stack' => [ 39 'driver' => 'stack', 40 'channels' => ['single'], 41 'ignore_exceptions' => false, 42 ], 37 // 'channels' => [ 38 // 'stack' => [ 39 // 'driver' => 'stack', 40 // 'channels' => ['single'], 41 // 'ignore_exceptions' => false, 42 // ], 43 // 44 // 'single' => [ 45 // 'driver' => 'single', 46 // 'path' => storage_path('logs/laravel.log'), 47 // 'level' => env('LOG_LEVEL', 'debug'), 48 // ], 43 49 44 'single' => [ 45 'driver' => 'single', 46 'path' => storage_path('logs/laravel.log'), 47 'level' => env('LOG_LEVEL', 'debug'), 48 ], 50 'default' => env('LOG_CHANNEL', 'stack'), 51 'channels' => [ 52 'stack' => [ 53 'driver' => 'stack', 54 'channels' => ['single'], 55 ], 56 'single' => [ 57 'driver' => 'errorlog', 58 'level' => 'debug', 59 ], 49 60 50 61 'daily' => [
Note:
See TracChangeset
for help on using the changeset viewer.