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