diff --git a/core/Command/Upgrade.php b/core/Command/Upgrade.php index 467338d6f14b..1265d22ce456 100644 --- a/core/Command/Upgrade.php +++ b/core/Command/Upgrade.php @@ -84,6 +84,11 @@ protected function configure() { * @param OutputInterface $output output interface */ protected function execute(InputInterface $input, OutputInterface $output) { + if ($output->getVerbosity() === OutputInterface::VERBOSITY_NORMAL + && !$input->hasParameterOption('--verbose=0', true)) { + // set to more verbose on upgrade if no explicit verbosity was set + $output->setVerbosity(OutputInterface::VERBOSITY_VERBOSE); + } if(\OC::checkUpgrade(false)) { if (OutputInterface::VERBOSITY_NORMAL < $output->getVerbosity()) {