Commit 6e5c7aef by James Cammarata

Cleaning up some vvvv log messages in accelerate

parent c477831e
......@@ -180,10 +180,10 @@ class Connection(object):
response = utils.parse_json(response)
if "pong" in response:
# it's a keepalive, go back to waiting
vvvv("received a keepalive packet")
vvvv("%s: received a keepalive packet" % self.host)
continue
else:
vvvv("received the response")
vvvv("%s: received the response" % self.host)
break
return (response.get('rc',None), '', response.get('stdout',''), response.get('stderr',''))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment