diff options
author | Josh Gachnang <josh@pcsforeducation.com> | 2015-03-03 12:54:35 -0800 |
---|---|---|
committer | Josh Gachnang <josh@pcsforeducation.com> | 2015-03-03 12:54:35 -0800 |
commit | 65fe55a81f91a361faba15183f91c905b92d725c (patch) | |
tree | e7222e2a654f667853640706494dd0d7de5c142f /ironic_python_agent/netutils.py | |
parent | 7f8b8871ec7ebe41121da783d88be1193d47d172 (diff) | |
download | ironic-python-agent-65fe55a81f91a361faba15183f91c905b92d725c.tar.gz |
Fix incorrect IPA log message
Change-Id: I520250287ae64495604e575b13a11481d03b79b2
Diffstat (limited to 'ironic_python_agent/netutils.py')
-rw-r--r-- | ironic_python_agent/netutils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ironic_python_agent/netutils.py b/ironic_python_agent/netutils.py index 1ccd6e75..299b474b 100644 --- a/ironic_python_agent/netutils.py +++ b/ironic_python_agent/netutils.py @@ -69,8 +69,8 @@ class RawPromiscuousSockets(object): fcntl.ioctl(sock.fileno(), SIOCSIFFLAGS, ifr) # S for Set # Bind the socket so it can be used LOG.debug('Binding interface %(interface)s for protocol ' - '%(proto)s: %s', {'interface': interface_name, - 'proto': self.protocol}) + '%(proto)s', {'interface': interface_name, + 'proto': self.protocol}) sock.bind((interface_name, self.protocol)) except Exception: LOG.warning('Failed to open all RawPromiscuousSockets, ' |