debug network config

This commit is contained in:
2025-08-31 23:01:19 -04:00
parent 5971e019d6
commit 6b0fc59d7a

View File

@@ -34,7 +34,9 @@ public class QemuCommandBuilder
AddStorageConfiguration();
// Network configuration
Console.WriteLine("Debug: About to add network configuration");
AddNetworkConfiguration();
Console.WriteLine("Debug: Network configuration added");
// Display configuration
AddDisplayConfiguration();
@@ -230,6 +232,8 @@ public class QemuCommandBuilder
{
var network = _config.Network;
Console.WriteLine($"Debug: Network configuration - Interfaces count: {network.Interfaces.Count}");
for (int i = 0; i < network.Interfaces.Count; i++)
{
var nic = network.Interfaces[i];