From 8f9ced4005fbe5f23ca2ddae328477df704ff76e Mon Sep 17 00:00:00 2001 From: Sam Doran Date: Thu, 29 Nov 2018 09:53:26 -0500 Subject: [PATCH] Improve log message (#49004) This is the only connection plugin that doesn't state explicitly what it is in the log. --- lib/ansible/plugins/connection/paramiko_ssh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/plugins/connection/paramiko_ssh.py b/lib/ansible/plugins/connection/paramiko_ssh.py index 5fc3e9b1f7e..f6c8df219cb 100644 --- a/lib/ansible/plugins/connection/paramiko_ssh.py +++ b/lib/ansible/plugins/connection/paramiko_ssh.py @@ -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()