From 9207c39105bb4b52da2464f896bd64124bfc988a Mon Sep 17 00:00:00 2001 From: "steve.brazier" Date: Fri, 6 Dec 2013 09:59:32 +0000 Subject: [PATCH] remove non existent variable. --- PHPCI/Builder.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PHPCI/Builder.php b/PHPCI/Builder.php index 701ee463..0f6877c5 100644 --- a/PHPCI/Builder.php +++ b/PHPCI/Builder.php @@ -431,7 +431,7 @@ class Builder implements LoggerAwareInterface } if (!class_exists($class)) { - $this->logFailure('Plugin does not exist: ' . $plugin, $ex); + $this->logFailure('Plugin does not exist: ' . $plugin); return false; }