diff --git a/lib/ansible/runner/connection_plugins/accelerate.py b/lib/ansible/runner/connection_plugins/accelerate.py index c4d7e4c9915fcb..9e37802ee79d1e 100644 --- a/lib/ansible/runner/connection_plugins/accelerate.py +++ b/lib/ansible/runner/connection_plugins/accelerate.py @@ -191,10 +191,10 @@ def exec_command(self, cmd, tmp_path, sudo_user, sudoable=False, executable='/bi 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',''))