We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b49ed1 commit f16f41cCopy full SHA for f16f41c
config/logging.php
@@ -3,6 +3,22 @@
3
return [
4
5
'channels' => [
6
+ "stack" => [
7
+ "driver" => "stack",
8
+ "channels" => ["single", "daily"],
9
+ "ignore_exceptions" => false,
10
+ ],
11
+ "single" => [
12
+ "driver" => "single",
13
+ "path" => storage_path("logs/laravel.log"),
14
+ "level" => env("LOG_LEVEL", "debug"),
15
16
+ "daily" => [
17
+ "driver" => "daily",
18
19
20
+ "days" => 14,
21
22
'mails_sent' => [
23
'driver' => 'single',
24
'path' => storage_path('logs/mails_sent.log'),
0 commit comments