Skip to content

Commit

Permalink
Remove check logger.
Browse files Browse the repository at this point in the history
  • Loading branch information
terabytesoftw committed Nov 22, 2023
1 parent 5216463 commit 2fe344d
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions bin/queue
Original file line number Diff line number Diff line change
Expand Up @@ -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();

0 comments on commit 2fe344d

Please sign in to comment.