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);
|
declare(strict_types=1);
|
||||||
|
|
||||||
use FireflyIII\Support\Logging\AuditLogger;
|
use FireflyIII\Support\Logging\AuditLogger;
|
||||||
|
use Monolog\Handler\SyslogUdpHandler;
|
||||||
|
|
||||||
return [
|
return [
|
||||||
/*
|
/*
|
||||||
@ -66,10 +67,13 @@ return [
|
|||||||
'via' => FireflyIII\Logging\CreateCustomLogger::class,
|
'via' => FireflyIII\Logging\CreateCustomLogger::class,
|
||||||
],
|
],
|
||||||
'papertrail' => [
|
'papertrail' => [
|
||||||
'driver' => 'papertrail',
|
'driver' => 'monolog',
|
||||||
'host' => env('PAPERTRAIL_HOST'),
|
'level' => env('LOG_LEVEL', 'debug'),
|
||||||
'port' => env('PAPERTRAIL_PORT'),
|
'handler' => SyslogUdpHandler::class,
|
||||||
'level' => envNonEmpty('APP_LOG_LEVEL', 'info'),
|
'handler_with' => [
|
||||||
|
'host' => env('PAPERTRAIL_HOST'),
|
||||||
|
'port' => env('PAPERTRAIL_PORT'),
|
||||||
|
],
|
||||||
],
|
],
|
||||||
|
|
||||||
// single laravel log file:
|
// single laravel log file:
|
||||||
|
Loading…
Reference in New Issue
Block a user