remove unnecessary 'print's
[pcucontrol.git] / pcucontrol / transports / pyssh / __init__.py
index 0c5cf4f..b64b9db 100644 (file)
@@ -15,7 +15,7 @@ version 0.1 of pyssh (http://pyssh.sourceforge.net) by Chuck Esterbrook.
 Licenced under a Python 2.2 style license.  See License.txt.\r
 """\r
 \r
-DEBUG_LEVEL = 1\r
+DEBUG_LEVEL = 0\r
 \r
 import os, getpass\r
 import signal    # should cause all KeyboardInterrupts to go to the main thread\r
@@ -162,8 +162,8 @@ class Ssh:
         sshargs += self.host\r
         if cmd:\r
             sshargs += ' ' + cmd\r
-        if self.debuglevel:\r
-            print ">> Running %s %s." % (self.sshpath, sshargs)\r
+        #if self.debuglevel:\r
+        #    print ">> Running %s %s." % (self.sshpath, sshargs)\r
         # temporary workaround until I get pid's working under win32\r
         #print sshargs\r
         if os.name == 'posix':\r