Left file: appwork-v1_4_0/laravel-vue-starter/config/logging.php  
Right file: appwork-v1_5_0/laravel-vue-starter/config/logging.php  
1 <?php = 1 <?php
2     2  
    -+ 3 use Monolog\Handler\NullHandler;
3 use Monolog\Handler\StreamHandler; = 4 use Monolog\Handler\StreamHandler;
4 use Monolog\Handler\SyslogUdpHandler;   5 use Monolog\Handler\SyslogUdpHandler;
5     6  
6 return [   7 return [
7     8  
8     /*   9     /*
9     |--------------------------------------------------------------------------   10     |--------------------------------------------------------------------------
10     | Default Log Channel   11     | Default Log Channel
11     |--------------------------------------------------------------------------   12     |--------------------------------------------------------------------------
12     |   13     |
13     | This option defines the default log channel that gets used when writing   14     | This option defines the default log channel that gets used when writing
14     | messages to the logs. The name specified in this option should match   15     | messages to the logs. The name specified in this option should match
15     | one of the channels defined in the "channels" configuration array.   16     | one of the channels defined in the "channels" configuration array.
16     |   17     |
17     */   18     */
18     19  
19     'default' => env('LOG_CHANNEL', 'stack'),   20     'default' => env('LOG_CHANNEL', 'stack'),
20     21  
21     /*   22     /*
22     |--------------------------------------------------------------------------   23     |--------------------------------------------------------------------------
23     | Log Channels   24     | Log Channels
24     |--------------------------------------------------------------------------   25     |--------------------------------------------------------------------------
25     |   26     |
26     | Here you may configure the log channels for your application. Out of   27     | Here you may configure the log channels for your application. Out of
27     | the box, Laravel uses the Monolog PHP logging library. This gives   28     | the box, Laravel uses the Monolog PHP logging library. This gives
28     | you a variety of powerful log handlers / formatters to utilize.   29     | you a variety of powerful log handlers / formatters to utilize.
29     |   30     |
30     | Available Drivers: "single", "daily", "slack", "syslog",   31     | Available Drivers: "single", "daily", "slack", "syslog",
31     |                    "errorlog", "monolog",   32     |                    "errorlog", "monolog",
32     |                    "custom", "stack"   33     |                    "custom", "stack"
33     |   34     |
34     */   35     */
35     36  
36     'channels' => [   37     'channels' => [
37         'stack' => [   38         'stack' => [
38             'driver' => 'stack',   39             'driver' => 'stack',
39             'channels' => ['daily'], <> 40             'channels' => ['single'],
40             'ignore_exceptions' => false, = 41             'ignore_exceptions' => false,
41         ],   42         ],
42     43  
43         'single' => [   44         'single' => [
44             'driver' => 'single',   45             'driver' => 'single',
45             'path' => storage_path('logs/laravel.log'),   46             'path' => storage_path('logs/laravel.log'),
46             'level' => 'debug',   47             'level' => 'debug',
47         ],   48         ],
48     49  
49         'daily' => [   50         'daily' => [
50             'driver' => 'daily',   51             'driver' => 'daily',
51             'path' => storage_path('logs/laravel.log'),   52             'path' => storage_path('logs/laravel.log'),
52             'level' => 'debug',   53             'level' => 'debug',
53             'days' => 14,   54             'days' => 14,
54         ],   55         ],
55     56  
56         'slack' => [   57         'slack' => [
57             'driver' => 'slack',   58             'driver' => 'slack',
58             'url' => env('LOG_SLACK_WEBHOOK_URL'),   59             'url' => env('LOG_SLACK_WEBHOOK_URL'),
59             'username' => 'Laravel Log',   60             'username' => 'Laravel Log',
60             'emoji' => ':boom:',   61             'emoji' => ':boom:',
61             'level' => 'critical',   62             'level' => 'critical',
62         ],   63         ],
63     64  
64         'papertrail' => [   65         'papertrail' => [
65             'driver' => 'monolog',   66             'driver' => 'monolog',
66             'level' => 'debug',   67             'level' => 'debug',
67             'handler' => SyslogUdpHandler::class,   68             'handler' => SyslogUdpHandler::class,
68             'handler_with' => [   69             'handler_with' => [
69                 'host' => env('PAPERTRAIL_URL'),   70                 'host' => env('PAPERTRAIL_URL'),
70                 'port' => env('PAPERTRAIL_PORT'),   71                 'port' => env('PAPERTRAIL_PORT'),
71             ],   72             ],
72         ],   73         ],
73     74  
74         'stderr' => [   75         'stderr' => [
75             'driver' => 'monolog',   76             'driver' => 'monolog',
76             'handler' => StreamHandler::class,   77             'handler' => StreamHandler::class,
77             'formatter' => env('LOG_STDERR_FORMATTER'),   78             'formatter' => env('LOG_STDERR_FORMATTER'),
78             'with' => [   79             'with' => [
79                 'stream' => 'php://stderr',   80                 'stream' => 'php://stderr',
80             ],   81             ],
81         ],   82         ],
82     83  
83         'syslog' => [   84         'syslog' => [
84             'driver' => 'syslog',   85             'driver' => 'syslog',
85             'level' => 'debug',   86             'level' => 'debug',
86         ],   87         ],
87     88  
88         'errorlog' => [   89         'errorlog' => [
89             'driver' => 'errorlog',   90             'driver' => 'errorlog',
90             'level' => 'debug',   91             'level' => 'debug',
91         ],   92         ],
    -+ 93  
      94         'null' => [
      95             'driver' => 'monolog',
      96             'handler' => NullHandler::class,
      97         ],
      98  
      99         'emergency' => [
      100             'path' => storage_path('logs/laravel.log'),
      101         ],
92     ], = 102     ],
93     103  
94 ];   104 ];