diff --git a/public_html/deployment/classes/vcs.git.class.php b/public_html/deployment/classes/vcs.git.class.php
index bb3c67e2e370e05da846acc227f746af8fce9562..5936ed783b00f2758999055967dcd5cd4839314d 100644
--- a/public_html/deployment/classes/vcs.git.class.php
+++ b/public_html/deployment/classes/vcs.git.class.php
@@ -454,8 +454,6 @@ class vcs implements iVcs {
         $this->log(__FUNCTION__." start command $sGitCmd");
         // $sReturn = shell_exec($sGitCmd);
         exec($sGitCmd, $sReturn, $iRc);
-        
-        echo print_r($sReturn, 1) . "<br>rc=$rc<br>";
         $this->log(__FUNCTION__." end command $sGitCmd");
         return implode("\n", $sReturn). "\nrc=$iRc";
     }