@@ -479,7 +479,7 @@ func (pl *dynamicResources) isSchedulableAfterClaimChange(logger klog.Logger, po
479
479
}
480
480
481
481
if originalClaim == nil {
482
- logger .V (4 ).Info ("claim for pod got created" , "pod" , klog .KObj (pod ), "claim" , klog .KObj (modifiedClaim ))
482
+ logger .V (5 ).Info ("claim for pod got created" , "pod" , klog .KObj (pod ), "claim" , klog .KObj (modifiedClaim ))
483
483
return framework .Queue , nil
484
484
}
485
485
@@ -497,7 +497,7 @@ func (pl *dynamicResources) isSchedulableAfterClaimChange(logger klog.Logger, po
497
497
return framework .QueueSkip , nil
498
498
}
499
499
500
- logger .V (4 ).Info ("status of claim for pod got updated" , "pod" , klog .KObj (pod ), "claim" , klog .KObj (modifiedClaim ))
500
+ logger .V (5 ).Info ("status of claim for pod got updated" , "pod" , klog .KObj (pod ), "claim" , klog .KObj (modifiedClaim ))
501
501
return framework .Queue , nil
502
502
}
503
503
@@ -569,7 +569,7 @@ func (pl *dynamicResources) isSchedulableAfterPodSchedulingContextChange(logger
569
569
// Deleted? That can happen because we ourselves delete the PodSchedulingContext while
570
570
// working on the pod. This can be ignored.
571
571
if oldObj != nil && newObj == nil {
572
- logger .V (4 ).Info ("PodSchedulingContext got deleted" )
572
+ logger .V (5 ).Info ("PodSchedulingContext got deleted" )
573
573
return framework .QueueSkip , nil
574
574
}
575
575
@@ -600,7 +600,7 @@ func (pl *dynamicResources) isSchedulableAfterPodSchedulingContextChange(logger
600
600
// This is not an unexpected error: we know that
601
601
// foreachPodResourceClaim only returns errors for "not
602
602
// schedulable".
603
- logger .V (4 ).Info ("pod is not schedulable, keep waiting" , "pod" , klog .KObj (pod ), "reason" , err .Error ())
603
+ logger .V (5 ).Info ("pod is not schedulable, keep waiting" , "pod" , klog .KObj (pod ), "reason" , err .Error ())
604
604
return framework .QueueSkip , nil
605
605
}
606
606
@@ -621,7 +621,7 @@ func (pl *dynamicResources) isSchedulableAfterPodSchedulingContextChange(logger
621
621
if oldPodScheduling == nil /* create */ ||
622
622
len (oldPodScheduling .Status .ResourceClaims ) < len (podScheduling .Status .ResourceClaims ) /* new information and not incomplete (checked above) */ {
623
623
// This definitely is new information for the scheduler. Try again immediately.
624
- logger .V (4 ).Info ("PodSchedulingContext for pod has all required information, schedule immediately" , "pod" , klog .KObj (pod ))
624
+ logger .V (5 ).Info ("PodSchedulingContext for pod has all required information, schedule immediately" , "pod" , klog .KObj (pod ))
625
625
return framework .Queue , nil
626
626
}
627
627
0 commit comments