From 1950ab218a2ddb3641ff454fa16ed22da4b0b008 Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Wed, 30 Oct 2024 16:31:37 -0400 Subject: [PATCH] fix(e2e): use debug log (#2338) Replace info log with debug log when skipping infra vms. issue: none --- e2e/vmcompose/data.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/vmcompose/data.go b/e2e/vmcompose/data.go index ba7675467..130223f91 100644 --- a/e2e/vmcompose/data.go +++ b/e2e/vmcompose/data.go @@ -61,7 +61,7 @@ func LoadData(ctx context.Context, path string) (types.InfrastructureData, error vmsByName := make(map[string]e2e.InstanceData) for _, vm := range data.VMs { if !hasService(vm.Name) { - log.Info(ctx, "Ignoring VM in infra data without services", nil, "vm", vm.Name, "path", path) + log.Debug(ctx, "Ignoring VM in infra data without services", nil, "vm", vm.Name, "path", path) continue }