From 5892fcb26ebec5ad541b41b52fedea81883614f5 Mon Sep 17 00:00:00 2001 From: Remo Laubacher Date: Wed, 26 Mar 2014 08:22:27 +0100 Subject: [PATCH] fix BuildLogger instantiation --- PHPCI/Builder.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PHPCI/Builder.php b/PHPCI/Builder.php index 9b88e597..b7b8c77e 100644 --- a/PHPCI/Builder.php +++ b/PHPCI/Builder.php @@ -121,7 +121,7 @@ class Builder implements LoggerAwareInterface $pluginFactory = $this->buildPluginFactory($build); $pluginFactory->addConfigFromFile(PHPCI_DIR . "/pluginconfig.php"); - $this->pluginExecutor = new Plugin\Util\Executor($pluginFactory, $this); + $this->pluginExecutor = new Plugin\Util\Executor($pluginFactory, $this->buildLogger); $this->commandExecutor = new CommandExecutor( $this->buildLogger,