Skip to content

Commit

Permalink
Merge pull request #5789 from CharlesQQ/set-log-level
Browse files Browse the repository at this point in the history
fix(status): set log to level 5
  • Loading branch information
karmada-bot authored Nov 6, 2024
2 parents 8a82511 + 2daa150 commit f846d78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/controllers/status/work_status_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ func generateKey(obj interface{}) (util.QueueKey, error) {
func getClusterNameFromAnnotation(resource *unstructured.Unstructured) (string, error) {
workNamespace, exist := resource.GetAnnotations()[workv1alpha2.WorkNamespaceAnnotation]
if !exist {
klog.V(4).Infof("Ignore resource(kind=%s, %s/%s) which is not managed by Karmada.", resource.GetKind(), resource.GetNamespace(), resource.GetName())
klog.V(5).Infof("Ignore resource(kind=%s, %s/%s) which is not managed by Karmada.", resource.GetKind(), resource.GetNamespace(), resource.GetName())
return "", nil
}

Expand Down

0 comments on commit f846d78

Please sign in to comment.