diff --git a/veilid-core/src/intf/native/network_interfaces/mod.rs b/veilid-core/src/intf/native/network_interfaces/mod.rs index 3a05cb98..84180b9f 100644 --- a/veilid-core/src/intf/native/network_interfaces/mod.rs +++ b/veilid-core/src/intf/native/network_interfaces/mod.rs @@ -344,9 +344,9 @@ impl NetworkInterfaces { let mut last_interfaces = { let mut last_interfaces = BTreeMap::::new(); let mut platform_support = PlatformSupport::new()?; - platform_support - .get_interfaces(&mut last_interfaces) - .await?; + if let Err(e) = platform_support.get_interfaces(&mut last_interfaces).await { + debug!("no network interfaces are enabled: {}", e); + } last_interfaces };