workbench, tests
This commit is contained in:
parent
d83a324eb0
commit
367858c97c
27 changed files with 568 additions and 410 deletions
16
workbench/config/logging.php
Normal file
16
workbench/config/logging.php
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<?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,
|
||||
],
|
||||
],
|
||||
];
|
||||
Loading…
Add table
Add a link
Reference in a new issue