diff --git a/src/Commands/ArtifactCommand.php b/src/Commands/ArtifactCommand.php index 0e1c22a..1fa1d8c 100644 --- a/src/Commands/ArtifactCommand.php +++ b/src/Commands/ArtifactCommand.php @@ -223,9 +223,9 @@ protected function configure(): void { * @throws \Exception */ protected function execute(InputInterface $input, OutputInterface $output): int { - // If log option was set, we set verbosity is very verbose. + // If log option was set, we set verbosity is debug. if ($input->getOption('log')) { - $output->setVerbosity(OutputInterface::VERBOSITY_VERY_VERBOSE); + $output->setVerbosity(OutputInterface::VERBOSITY_DEBUG); } // Setup io and logger. $this->io = new SymfonyStyle($input, $output);