mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-25 14:19:39 +03:00
18 lines
274 B
PHP
18 lines
274 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Shlinkio\Shlink;
|
|
|
|
use Shlinkio\Shlink\Common\Logger\LoggerType;
|
|
|
|
return [
|
|
|
|
'logger' => [
|
|
'Shlink' => [
|
|
'type' => LoggerType::STREAM->value,
|
|
'destination' => 'php://stderr',
|
|
],
|
|
],
|
|
|
|
];
|