From 8c8c68af42bb5088872d1f80cac8d65f9b7cf7f6 Mon Sep 17 00:00:00 2001 From: Greg Anderson Date: Thu, 14 Sep 2017 16:03:50 -0700 Subject: [PATCH] Enable logging again (once DI container is initialized). --- src/Preflight/Preflight.php | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/Preflight/Preflight.php b/src/Preflight/Preflight.php index 2a74e0222c..becd8f2b6f 100644 --- a/src/Preflight/Preflight.php +++ b/src/Preflight/Preflight.php @@ -205,15 +205,6 @@ protected function doRun($argv) $runner = new \Robo\Runner(); $runner->registerCommandClasses($application, $commandClasses); - // Process legacy Drush global options. - if ($input->getParameterOption(['--yes', '-y'], false, true)) { - $input->setInteractive(false); - } - // Use -vvv for even more verbose logging. - if ($input->getParameterOption(['--debug', '-d'], false, true)) { - $output->setVerbosity(Output::VERBOSITY_DEBUG); - } - // Run the Symfony Application // Predispatch: call a remote Drush command if applicable (via a 'pre-init' hook) // Bootstrap: bootstrap site to the level requested by the command (via a 'post-init' hook)