From c97686c02d1b16791a4b75fa9c2d761876f97b49 Mon Sep 17 00:00:00 2001 From: "kushal (she/her)" <125429069+kbeniwal@users.noreply.github.com> Date: Thu, 23 Mar 2023 10:18:36 +0530 Subject: [PATCH] chore: fix formatting issue in Info message (#70) Signed-off-by: Kushal Beniwal --- main.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/main.go b/main.go index df02a79..9004b3b 100644 --- a/main.go +++ b/main.go @@ -151,7 +151,11 @@ func createAWSAdapterConfigIfNotPresent(r *controllers.AWSAdapterConfigReconcile } if !rp.areAllPresent() { - setupLog.Info("One or more of the required parameters could not be found: clusterName='%s' clusterRegion='%s' adapterName='%s' adapterNamespace='%s'", rp.clusterName, rp.clusterRegion, rp.adapterName, rp.adapterNamespace) + setupLog.Info("One or more of the required parameters could not be found:", + "clusterName", rp.clusterName, + "clusterRegion", rp.clusterRegion, + "adapterName", rp.adapterName, + "adapterNamespace", rp.adapterNamespace) return }