From cfb0db5b81a778aba8f6f323c2103cb3bcb0f325 Mon Sep 17 00:00:00 2001 From: meadsteve Date: Tue, 17 Dec 2013 15:44:49 +0000 Subject: [PATCH] fixing builder so that PluginExecutor receives BuildLogger instance --- PHPCI/Builder.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PHPCI/Builder.php b/PHPCI/Builder.php index dcf59f8e..738f7bf3 100644 --- a/PHPCI/Builder.php +++ b/PHPCI/Builder.php @@ -118,7 +118,7 @@ class Builder implements LoggerAwareInterface $this->buildLogger = new BuildLogger($logger, $build); - $this->pluginExecutor = new Plugin\Util\Executor($this->buildPluginFactory($build), $this); + $this->pluginExecutor = new Plugin\Util\Executor($this->buildPluginFactory($build), $this->buildLogger); $this->commandExecutor = new CommandExecutor( $this->buildLogger,