diff --git a/neutron/agent/linux/ip_lib.py b/neutron/agent/linux/ip_lib.py index afcefb4a405..c9d142fab47 100644 --- a/neutron/agent/linux/ip_lib.py +++ b/neutron/agent/linux/ip_lib.py @@ -969,8 +969,8 @@ def ensure_device_is_ready(device_name, namespace=None): # Ensure the device has a MAC address and is up, even if it is already # up. if not dev.link.exists or not dev.link.address: - LOG.error("Device %s cannot be used as it has no MAC " - "address", device_name) + LOG.info("Device %s cannot be used as it has no MAC " + "address", device_name) return False dev.link.set_up() except RuntimeError: