From 2fe344d1e3f025d36a8cdf0b3f96bff3e76d0b64 Mon Sep 17 00:00:00 2001 From: Wilmer Arambula Date: Wed, 22 Nov 2023 15:09:44 -0300 Subject: [PATCH] Remove check logger. --- bin/queue | 6 ------ 1 file changed, 6 deletions(-) diff --git a/bin/queue b/bin/queue index cd3b9cfa..ed707523 100644 --- a/bin/queue +++ b/bin/queue @@ -24,12 +24,6 @@ $definitions = require_once 'definitions.php'; $containerConfig = ContainerConfig::create()->withDefinitions($definitions); $container = new Container($containerConfig); -if ($container->has(LoggerInterface::class) === false) { - throw new RuntimeException( - 'Logger is not configured, install your logger of choice and configure it properly in /bin/definitions.php.' - ); -} - /** @var Application $application */ $application = $container->get(Application::class); $application->run();