Skip to content

Commit fe0b983

Browse files
committed
Fix debug mode and verbosity relation
1 parent 2080407 commit fe0b983

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/StaticPHP/Command/BaseCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
9494
}
9595

9696
// Set debug mode in ApplicationContext
97-
$isDebug = $this->output->getVerbosity() >= OutputInterface::VERBOSITY_VERY_VERBOSE;
97+
$isDebug = $this->output->getVerbosity() >= OutputInterface::VERBOSITY_DEBUG;
9898
ApplicationContext::setDebug($isDebug);
9999

100100
// show raw argv list for logger()->debug

0 commit comments

Comments
 (0)