From 79e278913debaeec33c86c0387883ede7ed0aea2 Mon Sep 17 00:00:00 2001 From: Justin Dearing Date: Wed, 16 Mar 2016 20:48:55 -0400 Subject: [PATCH] Update logging of BaseCommandExecutor.php The $this->quiet thing seems like a mistake. --- PHPCI/Helper/BaseCommandExecutor.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/PHPCI/Helper/BaseCommandExecutor.php b/PHPCI/Helper/BaseCommandExecutor.php index bd948834..e160414f 100644 --- a/PHPCI/Helper/BaseCommandExecutor.php +++ b/PHPCI/Helper/BaseCommandExecutor.php @@ -77,9 +77,7 @@ abstract class BaseCommandExecutor implements CommandExecutor $command = call_user_func_array('sprintf', $args); - if ($this->quiet) { - $this->logger->log('Executing: ' . $command); - } + $this->logger->log('Executing: ' . $command); $status = 0; $descriptorSpec = array(