From 0bb3545333b1b40b9c3373e19016e571c80e0752 Mon Sep 17 00:00:00 2001 From: Adrian Likins Date: Thu, 23 Mar 2017 12:24:39 -0400 Subject: [PATCH] Remove ununsed Connection.log method (#22837) method referenced 'logger' which no longer exists. --- lib/ansible/plugins/connection/netconf.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/ansible/plugins/connection/netconf.py b/lib/ansible/plugins/connection/netconf.py index 31749c75ddc..8143bea696a 100644 --- a/lib/ansible/plugins/connection/netconf.py +++ b/lib/ansible/plugins/connection/netconf.py @@ -57,10 +57,6 @@ class Connection(ConnectionBase): self._manager = None self._connected = False - def log(self, msg): - msg = 'h=%s u=%s %s' % (self._play_context.remote_addr, self._play_context.remote_user, msg) - logger.debug(msg) - def _connect(self): super(Connection, self)._connect()