Skip to content

Commit

Permalink
Merge pull request karmada-io#4645 from laihezhao/my-dev
Browse files Browse the repository at this point in the history
correct print info
  • Loading branch information
karmada-bot committed Feb 21, 2024
2 parents 4ac432f + 8f0b190 commit f04c17f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions operator/pkg/util/apiclient/idempotency.go
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ func CreateOrUpdateStatefulSet(client clientset.Interface, statefulSet *appsv1.S
}
}

klog.V(5).InfoS("Successfully created or updated statefulset", "statefulset", statefulSet.GetName)
klog.V(5).InfoS("Successfully created or updated statefulset", "statefulset", statefulSet.GetName())
return nil
}

Expand All @@ -275,7 +275,7 @@ func CreateOrUpdateClusterRole(client clientset.Interface, clusterrole *rbacv1.C
}
}

klog.V(4).InfoS("Successfully created or updated clusterrole", "clusterrole", clusterrole.GetName)
klog.V(4).InfoS("Successfully created or updated clusterrole", "clusterrole", clusterrole.GetName())
return nil
}

Expand Down

0 comments on commit f04c17f

Please sign in to comment.