Queue command with direct redis access so it's faster
This commit is contained in:
@ -4,7 +4,7 @@ use Psr\Container\ContainerInterface;
|
||||
return [
|
||||
Psr\Log\LoggerInterface::class => function(ContainerInterface $container) {
|
||||
$minLogLevel = Monolog\Level::Debug;
|
||||
if ($container->has('DEBUG') and !$container->get('DEBUG')) {
|
||||
if ($container->has('DEBUG') and $container->get('DEBUG') === 'false') {
|
||||
$minLogLevel = Monolog\Level::Warning;
|
||||
}
|
||||
$handlers = [];
|
||||
|
Reference in New Issue
Block a user