16 lines
370 B
PHP
16 lines
370 B
PHP
<?php
|
|
|
|
use Monolog\Formatter\JsonFormatter;
|
|
|
|
return [
|
|
'default' => env('LOG_CHANNEL', 'single'),
|
|
'channels' => [
|
|
'dto' => [
|
|
'driver' => 'single',
|
|
'path' => getcwd() . '/logs/dto.log',
|
|
'level' => 'debug',
|
|
'replace_placeholders' => true,
|
|
'formatter' => JsonFormatter::class,
|
|
],
|
|
],
|
|
];
|