mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Fix papertrail
This commit is contained in:
parent
f4844e6252
commit
e331c10d7e
@ -22,6 +22,7 @@
|
||||
declare(strict_types=1);
|
||||
|
||||
use FireflyIII\Support\Logging\AuditLogger;
|
||||
use Monolog\Handler\SyslogUdpHandler;
|
||||
|
||||
return [
|
||||
/*
|
||||
@ -66,10 +67,13 @@ return [
|
||||
'via' => FireflyIII\Logging\CreateCustomLogger::class,
|
||||
],
|
||||
'papertrail' => [
|
||||
'driver' => 'papertrail',
|
||||
'host' => env('PAPERTRAIL_HOST'),
|
||||
'port' => env('PAPERTRAIL_PORT'),
|
||||
'level' => envNonEmpty('APP_LOG_LEVEL', 'info'),
|
||||
'driver' => 'monolog',
|
||||
'level' => env('LOG_LEVEL', 'debug'),
|
||||
'handler' => SyslogUdpHandler::class,
|
||||
'handler_with' => [
|
||||
'host' => env('PAPERTRAIL_HOST'),
|
||||
'port' => env('PAPERTRAIL_PORT'),
|
||||
],
|
||||
],
|
||||
|
||||
// single laravel log file:
|
||||
|
Loading…
Reference in New Issue
Block a user