mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-24 05:38:06 +03:00
81 lines
2.1 KiB
PHP
81 lines
2.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Shlinkio\Shlink;
|
|
|
|
use Monolog\Handler\RotatingFileHandler;
|
|
use Monolog\Handler\StreamHandler;
|
|
use Monolog\Logger;
|
|
use Monolog\Processor;
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
use const PHP_EOL;
|
|
|
|
return [
|
|
|
|
'logger' => [
|
|
'formatters' => [
|
|
'dashed' => [
|
|
'format' => '[%datetime%] %channel%.%level_name% - %message%' . PHP_EOL,
|
|
'include_stacktraces' => true,
|
|
],
|
|
],
|
|
|
|
'handlers' => [
|
|
'shlink_rotating_handler' => [
|
|
'class' => RotatingFileHandler::class,
|
|
'level' => Logger::INFO,
|
|
'filename' => 'data/log/shlink_log.log',
|
|
'max_files' => 30,
|
|
'formatter' => 'dashed',
|
|
],
|
|
'access_handler' => [
|
|
'class' => StreamHandler::class,
|
|
'level' => Logger::INFO,
|
|
'stream' => 'php://stdout',
|
|
],
|
|
],
|
|
|
|
'processors' => [
|
|
'exception_with_new_line' => [
|
|
'class' => Common\Logger\Processor\ExceptionWithNewLineProcessor::class,
|
|
],
|
|
'psr3' => [
|
|
'class' => Processor\PsrLogMessageProcessor::class,
|
|
],
|
|
],
|
|
|
|
'loggers' => [
|
|
'Shlink' => [
|
|
'handlers' => ['shlink_rotating_handler'],
|
|
'processors' => ['exception_with_new_line', 'psr3'],
|
|
],
|
|
'Access' => [
|
|
'handlers' => ['access_handler'],
|
|
'processors' => ['exception_with_new_line', 'psr3'],
|
|
],
|
|
],
|
|
],
|
|
|
|
'dependencies' => [
|
|
'factories' => [
|
|
'Logger_Shlink' => Common\Logger\LoggerFactory::class,
|
|
'Logger_Access' => Common\Logger\LoggerFactory::class,
|
|
],
|
|
'aliases' => [
|
|
'logger' => 'Logger_Shlink',
|
|
Logger::class => 'Logger_Shlink',
|
|
LoggerInterface::class => 'Logger_Shlink',
|
|
],
|
|
],
|
|
|
|
'zend-expressive-swoole' => [
|
|
'swoole-http-server' => [
|
|
'logger' => [
|
|
'logger-name' => 'Logger_Access',
|
|
],
|
|
],
|
|
],
|
|
|
|
];
|