diff --git a/src/Adapter/Composer.php b/src/Adapter/Composer.php index 400a22c4..0760c803 100644 --- a/src/Adapter/Composer.php +++ b/src/Adapter/Composer.php @@ -41,7 +41,7 @@ private function execute(Process $process, float $timeout = 300): void $deferred->resolve(); }); - $this->logger->notice(sprintf('Starting process "%s".', $process->getCommand())); + $this->logger->debug(sprintf('Starting process "%s".', $process->getCommand())); await(timeout($deferred->promise(), $timeout)); diff --git a/src/Adapter/Docker/Satellite.php b/src/Adapter/Docker/Satellite.php index 1080f0ff..f551d427 100644 --- a/src/Adapter/Docker/Satellite.php +++ b/src/Adapter/Docker/Satellite.php @@ -108,7 +108,7 @@ private function execute( $deferred->resolve(); }); - $logger->notice(sprintf('Starting process "%s".', $process->getCommand())); + $logger->debug(sprintf('Starting process "%s".', $process->getCommand())); await(timeout($deferred->promise(), $timeout)); diff --git a/src/Console/Command/RunCommand.php b/src/Console/Command/RunCommand.php index dd82d70d..a85f73d7 100644 --- a/src/Console/Command/RunCommand.php +++ b/src/Console/Command/RunCommand.php @@ -197,7 +197,7 @@ private function executeWorker( $deferred->resolve(); }); - $style->note(sprintf('Starting process "%s".', $process->getCommand())); + $style->info(sprintf('Starting process "%s".', $process->getCommand())); await($deferred->promise());