33 lines
1.0 KiB
PHP
33 lines
1.0 KiB
PHP
<?php
|
|
|
|
use Monolog\Handler\StreamHandler;
|
|
use Monolog\Processor\PsrLogMessageProcessor;
|
|
|
|
return [
|
|
'default' => env('LOG_CHANNEL', 'stack'),
|
|
'deprecations' => ['channel' => 'null', 'trace' => false],
|
|
|
|
'channels' => [
|
|
'stack' => [
|
|
'driver' => 'stack',
|
|
'channels' => explode(',', (string) env('LOG_STACK', 'single')),
|
|
'ignore_exceptions' => false,
|
|
],
|
|
'single' => [
|
|
'driver' => 'single',
|
|
'path' => storage_path('logs/laravel.log'),
|
|
'level' => env('LOG_LEVEL', 'debug'),
|
|
'replace_placeholders' => true,
|
|
],
|
|
'stderr' => [
|
|
'driver' => 'monolog',
|
|
'level' => env('LOG_LEVEL', 'debug'),
|
|
'handler' => StreamHandler::class,
|
|
'formatter' => env('LOG_STDERR_FORMATTER'),
|
|
'with' => ['stream' => 'php://stderr'],
|
|
'processors' => [PsrLogMessageProcessor::class],
|
|
],
|
|
'null' => ['driver' => 'monolog', 'handler' => Monolog\Handler\NullHandler::class],
|
|
],
|
|
];
|