Skip to content
This repository was archived by the owner on Jan 29, 2025. It is now read-only.

Commit ab25796

Browse files
committed
rationalize logging
Log level adjustments. Signed-off-by: Ukri Niemimuukko <ukri.niemimuukko@intel.com>
1 parent 71a0010 commit ab25796

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

gpu-aware-scheduling/pkg/gpuscheduler/node_resource_cache.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -418,18 +418,18 @@ func (c *Cache) workerRun() {
418418
}
419419

420420
func (c *Cache) work() bool {
421-
klog.V(L3).Info("worker started")
421+
klog.V(L5).Info("worker started")
422422

423423
itemI, quit := c.workQueue.Get()
424424

425425
if quit {
426-
klog.V(L3).Info("worker quitting")
426+
klog.V(L2).Info("worker quitting")
427427

428428
return false
429429
}
430430

431431
defer c.workQueue.Done(itemI)
432-
defer klog.V(L3).Info("worker ended work")
432+
defer klog.V(L5).Info("worker ended work")
433433

434434
item := itemI.(workQueueItem)
435435
forget, err := c.handlePod(item)

0 commit comments

Comments
 (0)