Commit 5c4ce2a6 authored by Cao Shufeng's avatar Cao Shufeng

[garbage collector] fix log info

parent da9a4d5d
...@@ -128,7 +128,7 @@ func (gc *GarbageCollector) removeFinalizer(owner *node, targetFinalizer string) ...@@ -128,7 +128,7 @@ func (gc *GarbageCollector) removeFinalizer(owner *node, targetFinalizer string)
newFinalizers = append(newFinalizers, f) newFinalizers = append(newFinalizers, f)
} }
if !found { if !found {
glog.V(5).Infof("the orphan finalizer is already removed from object %s", owner.identity) glog.V(5).Infof("the %s finalizer is already removed from object %s", targetFinalizer, owner.identity)
return nil return nil
} }
// remove the owner from dependent's OwnerReferences // remove the owner from dependent's OwnerReferences
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment