mirror of
https://github.com/CumulusNetworks/ifupdown2.git
synced 2024-05-06 15:54:50 +00:00
Change warn to debug for gateway del errors during down
Ticket: CM-3346 Reviewed By: Testing Done: trivial
This commit is contained in:
@@ -191,7 +191,8 @@ class address(moduleBase):
|
|||||||
# XXX Dont know what to reset the address to
|
# XXX Dont know what to reset the address to
|
||||||
self._remove_address_from_bridge(ifaceobj, hwaddress)
|
self._remove_address_from_bridge(ifaceobj, hwaddress)
|
||||||
except Exception, e:
|
except Exception, e:
|
||||||
self.log_warn(str(e))
|
self.logger.debug('%s : %s' %(ifaceobj.name, str(e)))
|
||||||
|
pass
|
||||||
|
|
||||||
def _get_iface_addresses(self, ifaceobj):
|
def _get_iface_addresses(self, ifaceobj):
|
||||||
addrlist = ifaceobj.get_attr_value('address')
|
addrlist = ifaceobj.get_attr_value('address')
|
||||||
|
Reference in New Issue
Block a user