Improve log message (#49004)

This is the only connection plugin that doesn't state explicitly what it is in the log.
This commit is contained in:
Sam Doran 2018-11-29 09:53:26 -05:00 committed by Brian Coca
parent d6d16fa619
commit 8f9ced4005

View file

@ -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()