Skip to content

Instantly share code, notes, and snippets.

@marechenok
Last active September 16, 2020 12:45
Show Gist options
  • Save marechenok/beee95d53f902997808ba96867ed9bc1 to your computer and use it in GitHub Desktop.
Save marechenok/beee95d53f902997808ba96867ed9bc1 to your computer and use it in GitHub Desktop.
Laravel Papertrail config setup
<?php
'channel' => [
'driver' => 'monolog',
'handler' => Monolog\Handler\SyslogUdpHandler::class,
'formatter' => Monolog\Formatter\LineFormatter::class,
'level' => 'debug',
'with' =>[
'host' => env('PAPERTRAIL_HOST'),
'port' => env('PAPERTRAIL_PORT'),
]
],
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment