summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Cammarata <jimi@sngx.net>2013-10-01 15:34:58 -0500
committerJames Cammarata <jimi@sngx.net>2013-10-07 13:20:15 -0500
commit6e5c7aef9fe78deced39743ae756a662f1a251c5 (patch)
tree55818b8af8446f89364758c3d8d1367598b75f9e
parentc477831e9f7b3aaf9694bc23365d755f7faa504f (diff)
downloadansible-6e5c7aef9fe78deced39743ae756a662f1a251c5.tar.gz
Cleaning up some vvvv log messages in accelerate
-rw-r--r--lib/ansible/runner/connection_plugins/accelerate.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ansible/runner/connection_plugins/accelerate.py b/lib/ansible/runner/connection_plugins/accelerate.py
index 3a17c82cec..61913958fb 100644
--- a/lib/ansible/runner/connection_plugins/accelerate.py
+++ b/lib/ansible/runner/connection_plugins/accelerate.py
@@ -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',''))