Adding papertrail log channel option

This commit is contained in:
Renoir dos Reis 2018-09-05 11:15:27 -03:00
parent 8c41eae200
commit ea3afd1013
1 changed files with 9 additions and 0 deletions

View File

@ -76,6 +76,15 @@
'driver' => 'errorlog', 'driver' => 'errorlog',
'level' => 'debug', 'level' => 'debug',
], ],
'papertrail' => [
'driver' => 'monolog',
'handler' => Monolog\Handler\SyslogUdpHandler::class,
'handler_with' => [
'host' => env('PAPERTRAIL_URL'),
'port' => env('PAPERTRAIL_PORT'),
],
],
], ],
]; ];