Improve log message (#49004)

This is the only connection plugin that doesn't state explicitly what it is in the log.
pull/49308/head
Sam Doran 6 years ago committed by Brian Coca
parent d6d16fa619
commit 8f9ced4005

@ -302,7 +302,7 @@ class Connection(ConnectionBase):
raise AnsibleError("paramiko is not installed")
port = self._play_context.port or 22
display.vvv("ESTABLISH CONNECTION FOR USER: %s on PORT %s TO %s" % (self._play_context.remote_user, port, self._play_context.remote_addr),
display.vvv("ESTABLISH PARAMIKO SSH CONNECTION FOR USER: %s on PORT %s TO %s" % (self._play_context.remote_user, port, self._play_context.remote_addr),
host=self._play_context.remote_addr)
ssh = paramiko.SSHClient()

Loading…
Cancel
Save