clean up debug messages

This commit is contained in:
Luke Campagnola 2014-03-14 17:57:44 -04:00
parent 89c04c8a81
commit 5d709251d1

View File

@ -83,7 +83,7 @@ class RemoteEventHandler(object):
def debugMsg(self, msg):
if not self.debug:
return
cprint.cout(self.debug, "%d [%d] %s\n" % (self.debug, os.getpid(), str(msg)), -1)
cprint.cout(self.debug, "[%d] %s\n" % (os.getpid(), str(msg)), -1)
def getProxyOption(self, opt):
return self.proxyOptions[opt]