From b54df34353d4035abdaeacf3f5aa8bd342fd7520 Mon Sep 17 00:00:00 2001 From: "tan.nguyen" Date: Thu, 28 Mar 2024 23:23:51 +0700 Subject: [PATCH] test --- src/Commands/ArtifactCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);