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:
Dan Williams 2013-11-07 11:33:16 -06:00
parent 47a0cf2a6c
commit 60cf32f271

View file

@ -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;
}