From aa871a16275749ebc9045f12bd836924bc98b361 Mon Sep 17 00:00:00 2001 From: Zach Aller Date: Thu, 1 Aug 2024 11:20:28 -0500 Subject: [PATCH] add log Signed-off-by: Zach Aller --- rollout/controller.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rollout/controller.go b/rollout/controller.go index ae4f0834e9..be64fdda61 100644 --- a/rollout/controller.go +++ b/rollout/controller.go @@ -567,7 +567,7 @@ func (c *Controller) newRolloutContext(rollout *v1alpha1.Rollout) (*rolloutConte for _, rs := range rsList { if rs.Labels[v1alpha1.DefaultRolloutUniqueLabelKey] == podHash { foundRS = true - logCtx.Info("newRS found via label selector lookup and pod hash", "rs", rs.Name) + logCtx.Info("newRS found via label selector lookup and pod hash : %s", "rs", rs.Name, podHash) break } }