From 2aa3b7864f1272b5ecb54a3b3af22f583805905e Mon Sep 17 00:00:00 2001 From: alfredbez Date: Fri, 7 Aug 2020 14:43:16 +0200 Subject: [PATCH] Change log level for internal messages to debug --- src/Core/Application.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Core/Application.php b/src/Core/Application.php index 518afca..c04bb13 100644 --- a/src/Core/Application.php +++ b/src/Core/Application.php @@ -42,7 +42,7 @@ public function doRun(InputInterface $input, OutputInterface $output) $projectRoot = $this->projectRoot; $output->writeln( "OXID project root is found at $projectRoot", - OutputInterface::VERBOSITY_VERBOSE + OutputInterface::VERBOSITY_DEBUG ); chdir($projectRoot); @@ -69,14 +69,14 @@ public function doRun(InputInterface $input, OutputInterface $output) $_SERVER['HTTP_HOST'] = 'localhost'; $output->writeln( "collecting comands...", - OutputInterface::VERBOSITY_VERBOSE + OutputInterface::VERBOSITY_DEBUG ); $commandCollector = new CommandCollector(); $application = $this; $commands = $commandCollector->getAllCommands(); $output->writeln( "commands collected", - OutputInterface::VERBOSITY_VERBOSE + OutputInterface::VERBOSITY_DEBUG ); foreach ($commands as $command) { try { @@ -87,7 +87,7 @@ public function doRun(InputInterface $input, OutputInterface $output) } $output->writeln( "commands added", - OutputInterface::VERBOSITY_VERBOSE + OutputInterface::VERBOSITY_DEBUG ); parent::doRun($input, $output); } @@ -108,7 +108,7 @@ public function loadBootstrap(InputInterface $input, OutputInterface $output) $output->writeln( "Loading OXID bootstrap...", - OutputInterface::VERBOSITY_VERBOSE + OutputInterface::VERBOSITY_DEBUG ); $possiblePathsForBootstrap = [ $this->projectRoot . '/source/bootstrap.php', @@ -132,7 +132,7 @@ public function loadBootstrap(InputInterface $input, OutputInterface $output) } $output->writeln( "OXID bootstrap done", - OutputInterface::VERBOSITY_VERBOSE + OutputInterface::VERBOSITY_DEBUG ); return; }