Blame view

config/logging.php 2.47 KB
e77200db5   nologostudio.ru   Initial commit
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
  <?php
  
  use Monolog\Handler\StreamHandler;
  
  $stackChannels = ['single'];
  
  if (extension_loaded('newrelic')) {
      $stackChannels[] = 'newrelic';
  }
  
  return [
  
      /*
      |--------------------------------------------------------------------------
      | Default Log Channel
      |--------------------------------------------------------------------------
      |
      | This option defines the default log channel that gets used when writing
      | messages to the logs. The name specified in this option should match
      | one of the channels defined in the "channels" configuration array.
      |
      */
  
      'default' => env('LOG_CHANNEL', 'stack'),
  
      /*
      |--------------------------------------------------------------------------
      | Log Channels
      |--------------------------------------------------------------------------
      |
      | Here you may configure the log channels for your application. Out of
      | the box, Laravel uses the Monolog PHP logging library. This gives
      | you a variety of powerful log handlers / formatters to utilize.
      |
      | Available Drivers: "single", "daily", "slack", "syslog",
      |                    "errorlog", "monolog",
      |                    "custom", "stack"
      |
      */
  
      'channels' => [
          'stack' => [
              'driver' => 'stack',
              'channels' => $stackChannels,
          ],
  
          'single' => [
              'driver' => 'single',
              'path' => storage_path('logs/lumen.log'),
              'level' => 'debug',
          ],
  
          'daily' => [
              'driver' => 'daily',
              'path' => storage_path('logs/laravel.log'),
              'level' => 'debug',
              'days' => 7,
          ],
  
          'slack' => [
              'driver' => 'slack',
              'url' => env('LOG_SLACK_WEBHOOK_URL'),
              'username' => 'Laravel Log',
              'emoji' => ':boom:',
              'level' => 'critical',
          ],
  
          'stderr' => [
              'driver' => 'monolog',
              'handler' => StreamHandler::class,
              'with' => [
                  'stream' => 'php://stderr',
              ],
          ],
  
          'syslog' => [
              'driver' => 'syslog',
              'level' => 'debug',
          ],
  
          'errorlog' => [
              'driver' => 'errorlog',
              'level' => 'debug',
          ],
  
          'newrelic' => [
              'driver' => 'monolog',
              'handler' => Monolog\Handler\NewRelicHandler::class,
              'formatter' => 'default',
              'level' => 'error',
          ]
      ],
  
  ];