do not show debug info
authorChristian Weiske <cweiske@cweiske.de>
Thu, 6 Nov 2014 20:19:30 +0000 (21:19 +0100)
committerChristian Weiske <cweiske@cweiske.de>
Thu, 6 Nov 2014 20:19:30 +0000 (21:19 +0100)
src/phancap/Executor.php

index f9962bbf7d5bde6f28abf5561b2929bb51b57288..ebe0d60ce7b87e2b77bb6a3c39d8817cd909c280 100644 (file)
@@ -39,7 +39,7 @@ class Executor
         exec($cmd . ' 2>&1', $arOutput, $exitcode);
         if ($exitcode != 0) {
             //FIXME: do something with $arOutput
-            echo implode("\n", $arOutput) . "\n";
+            //echo implode("\n", $arOutput) . "\n";
             throw new \Exception('Error running cutycapt', $exitcode);
         }
     }