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

View File

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