1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Cleaning up some vvvv log messages in accelerate

This commit is contained in:
James Cammarata 2013-10-01 15:34:58 -05:00
parent 8c17711247
commit 12f6957596

View file

@ -191,10 +191,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',''))