diff --git a/QemuVmManager.Core/QemuCommandBuilder.cs b/QemuVmManager.Core/QemuCommandBuilder.cs index 8f5d231..f632561 100644 --- a/QemuVmManager.Core/QemuCommandBuilder.cs +++ b/QemuVmManager.Core/QemuCommandBuilder.cs @@ -233,6 +233,8 @@ public class QemuCommandBuilder var network = _config.Network; 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++) {