From fe0b983f6c49320787fc127960c364bd3bcbf0cd Mon Sep 17 00:00:00 2001 From: crazywhalecc Date: Thu, 11 Dec 2025 13:46:15 +0800 Subject: [PATCH] Fix debug mode and verbosity relation --- src/StaticPHP/Command/BaseCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/StaticPHP/Command/BaseCommand.php b/src/StaticPHP/Command/BaseCommand.php index da01723a..e416be26 100644 --- a/src/StaticPHP/Command/BaseCommand.php +++ b/src/StaticPHP/Command/BaseCommand.php @@ -94,7 +94,7 @@ abstract class BaseCommand extends Command } // Set debug mode in ApplicationContext - $isDebug = $this->output->getVerbosity() >= OutputInterface::VERBOSITY_VERY_VERBOSE; + $isDebug = $this->output->getVerbosity() >= OutputInterface::VERBOSITY_DEBUG; ApplicationContext::setDebug($isDebug); // show raw argv list for logger()->debug