From: Christian Weiske Date: Thu, 6 Nov 2014 20:19:30 +0000 (+0100) Subject: do not show debug info X-Git-Tag: v0.2.0~2 X-Git-Url: https://git.cweiske.de/phancap.git/commitdiff_plain/8d30eac6f4c40471f2ea018c97c837dadf51347c do not show debug info --- diff --git a/src/phancap/Executor.php b/src/phancap/Executor.php index f9962bb..ebe0d60 100644 --- a/src/phancap/Executor.php +++ b/src/phancap/Executor.php @@ -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); } }