Reduce log level in "ensure_device_is_ready"
If the device is not ready, the method should inform about this
event. The code calling this method, if needed, can write a higher
log message.
Change-Id: Ib7c5ba736f6e4ccc88df665faeef304c176a24e7
Closes-Bug: #1896920
(cherry picked from commit b1f1c8aa50
)
This commit is contained in:
parent
08401fb8b0
commit
5d6faee55f
@ -969,7 +969,7 @@ def ensure_device_is_ready(device_name, namespace=None):
|
|||||||
# Ensure the device has a MAC address and is up, even if it is already
|
# Ensure the device has a MAC address and is up, even if it is already
|
||||||
# up.
|
# up.
|
||||||
if not dev.link.exists or not dev.link.address:
|
if not dev.link.exists or not dev.link.address:
|
||||||
LOG.error("Device %s cannot be used as it has no MAC "
|
LOG.info("Device %s cannot be used as it has no MAC "
|
||||||
"address", device_name)
|
"address", device_name)
|
||||||
return False
|
return False
|
||||||
dev.link.set_up()
|
dev.link.set_up()
|
||||||
|
Loading…
Reference in New Issue
Block a user