26 lines
682 B
PHP
26 lines
682 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
return [
|
||
|
|
'default' => env('LOG_CHANNEL', 'single'),
|
||
|
|
|
||
|
|
'channels' => [
|
||
|
|
'single' => [
|
||
|
|
'driver' => 'single',
|
||
|
|
'path' => storage_path('logs/laravel.log'),
|
||
|
|
'level' => env('LOG_LEVEL', 'warning'),
|
||
|
|
'replace_placeholders' => true,
|
||
|
|
],
|
||
|
|
'stderr' => [
|
||
|
|
'driver' => 'monolog',
|
||
|
|
'level' => env('LOG_LEVEL', 'debug'),
|
||
|
|
'handler' => Monolog\Handler\StreamHandler::class,
|
||
|
|
'with' => [
|
||
|
|
'stream' => 'php://stderr',
|
||
|
|
],
|
||
|
|
'processors' => [Monolog\Processor\PsrLogMessageProcessor::class],
|
||
|
|
],
|
||
|
|
],
|
||
|
|
];
|