Skip to content

Commit

Permalink
chore: fix formatting issue in Info message (#70)
Browse files Browse the repository at this point in the history
Signed-off-by: Kushal Beniwal <[email protected]>
  • Loading branch information
kbeniwal authored Mar 23, 2023
1 parent c9f3d8a commit c97686c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit c97686c

Please sign in to comment.