mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-05 20:28:15 +02:00
trivial: quiet log message about failing to determine virtual interface name
In the case of autoconnect VLANs or IB partitions, if the parent interface hasn't been detected yet at startup, then the get_virtual_interface_name() won't be able to find the parent yet. That's normal, and when the parent is found, system_create_virtual_device() will be run again and the parent will be found, and the autoconnect VLAN/IB partition will be created. But we shouldn't warn that the parent can't be found when that might be a normal occurance.
This commit is contained in:
parent
47a0cf2a6c
commit
60cf32f271
1 changed files with 2 additions and 2 deletions
|
|
@ -1200,8 +1200,8 @@ system_create_virtual_device (NMManager *self, NMConnection *connection)
|
|||
|
||||
iface = get_virtual_iface_name (self, connection, &parent);
|
||||
if (!iface) {
|
||||
nm_log_warn (LOGD_DEVICE, "(%s) failed to determine virtual interface name",
|
||||
nm_connection_get_id (connection));
|
||||
nm_log_dbg (LOGD_DEVICE, "(%s) failed to determine virtual interface name",
|
||||
nm_connection_get_id (connection));
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue