[9.x] Make it easier to support Papertrail on Vapor out of the box (#5780)

* Make it easier to support Papertrail on Vapor

* Fixed style
This commit is contained in:
Beau Simensen 2022-01-27 12:00:18 -06:00 committed by GitHub
parent b2dbbafab9
commit aed682e0de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -78,10 +78,11 @@
'papertrail' => [
'driver' => 'monolog',
'level' => env('LOG_LEVEL', 'debug'),
'handler' => SyslogUdpHandler::class,
'handler' => env('LOG_PAPERTRAIL_HANDLER', SyslogUdpHandler::class),
'handler_with' => [
'host' => env('PAPERTRAIL_URL'),
'port' => env('PAPERTRAIL_PORT'),
'connectionString' => 'tls://'.env('PAPERTRAIL_URL').':'.env('PAPERTRAIL_PORT'),
],
],