From aa78e3215c16ced6f7fef035c08a3618be45caa0 Mon Sep 17 00:00:00 2001 From: xiaoping Date: Sun, 15 May 2022 21:05:58 +0800 Subject: [PATCH] fix unformatted log --- pkg/controller/helm/helm_controller.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/controller/helm/helm_controller.go b/pkg/controller/helm/helm_controller.go index a09ced509..4164545c2 100644 --- a/pkg/controller/helm/helm_controller.go +++ b/pkg/controller/helm/helm_controller.go @@ -73,7 +73,7 @@ func (r *Reconciler) SetupWithManager(mgr ctrl.Manager) error { if err := r.SetupWithManager(mgr); err != nil { return err } - klog.Info("configured watch", "gvk", w.GroupVersionKind, "chartPath", w.ChartPath, "maxConcurrentReconciles", maxConcurrentReconciles, "reconcilePeriod", reconcilePeriod) + klog.Infoln("configured watch", "gvk", w.GroupVersionKind, "chartPath", w.ChartPath, "maxConcurrentReconciles", maxConcurrentReconciles, "reconcilePeriod", reconcilePeriod) } return nil }