Skip to content

Commit

Permalink
Merge pull request #9998 from dlipovetsky/fix-walker-log
Browse files Browse the repository at this point in the history
🐛 Use keys/values structured log interface
  • Loading branch information
k8s-ci-robot committed Jan 15, 2024
2 parents acc88b9 + bbbd09f commit 22c88aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exp/runtime/topologymutation/walker.go
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ func WalkTemplates(ctx context.Context, decoder runtime.Decoder, req *runtimehoo
PatchType: options.patchFormat,
Patch: patch,
})
requestItemLog.V(5).Info("Generated patch (uid: %q): %q\n", requestItem.UID, string(patch))
requestItemLog.V(5).Info("Generated patch", "uid", requestItem.UID, "patch", string(patch))
}

resp.Status = runtimehooksv1.ResponseStatusSuccess
Expand Down

0 comments on commit 22c88aa

Please sign in to comment.