Debug networking

This commit is contained in:
2025-08-31 23:04:59 -04:00
parent 6b0fc59d7a
commit 307d256ddf

View File

@@ -233,6 +233,8 @@ public class QemuCommandBuilder
var network = _config.Network; var network = _config.Network;
Console.WriteLine($"Debug: Network configuration - Interfaces count: {network.Interfaces.Count}"); Console.WriteLine($"Debug: Network configuration - Interfaces count: {network.Interfaces.Count}");
Console.WriteLine($"Debug: Network configuration object: {network}");
Console.WriteLine($"Debug: Network interfaces: {string.Join(", ", network.Interfaces.Select(i => $"{i.Type}:{i.Model}:{i.Bridge}"))}");
for (int i = 0; i < network.Interfaces.Count; i++) for (int i = 0; i < network.Interfaces.Count; i++)
{ {