Skip to content

Commit

Permalink
fix(e2e/vmcompose): remove nil from log (#2382)
Browse files Browse the repository at this point in the history
Remove nil from log

issue: none
  • Loading branch information
kc1116 authored Nov 5, 2024
1 parent 8d05a64 commit 4771e84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/vmcompose/data.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.Debug(ctx, "Ignoring VM in infra data without services", nil, "vm", vm.Name, "path", path)
log.Debug(ctx, "Ignoring VM in infra data without services", "vm", vm.Name, "path", path)
continue
}

Expand Down

0 comments on commit 4771e84

Please sign in to comment.