1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
| <?php
return [ 'default' => env('LOG_CHANNEL', 'stack'), 'channels' => [ 'stack' => [ 'driver' => 'stack', 'channels' => ['daily', 'slack'], 'ignore_exceptions' => false, ], 'daily' => [ 'driver' => 'daily', 'path' => storage_path('logs/laravel.log'), 'level' => env('LOG_LEVEL', 'debug'), 'days' => 14, 'permission' => 0644, ], 'errors' => [ 'driver' => 'daily', 'path' => storage_path('logs/errors.log'), 'level' => 'error', 'days' => 30, ], 'requests' => [ 'driver' => 'daily', 'path' => storage_path('logs/requests.log'), 'level' => 'info', 'days' => 7, ], 'performance' => [ 'driver' => 'daily', 'path' => storage_path('logs/performance.log'), 'level' => 'info', 'days' => 7, ], 'security' => [ 'driver' => 'daily', 'path' => storage_path('logs/security.log'), 'level' => 'warning', 'days' => 90, ], 'json' => [ 'driver' => 'daily', 'path' => storage_path('logs/structured.json'), 'level' => 'debug', 'days' => 14, 'formatter' => Monolog\Formatter\JsonFormatter::class, ], ], ];
|