Queue command with direct redis access so it's faster

This commit is contained in:
Juan Pablo Vial
2025-05-16 13:56:32 -04:00
parent f47f86dd2b
commit 8ba54fd3ad
6 changed files with 103 additions and 18 deletions

View File

@ -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 = [];