Skip to content

Commit 0fa9b04

Browse files
Merge pull request #472 from wking/demote-status-change-logging
Bug 1886900: pkg/cvo/sync_worker: Demote "Status change: ..." logging to v6
2 parents ee96b60 + 98a7b66 commit 0fa9b04

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/cvo/sync_worker.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -455,12 +455,12 @@ func (w *SyncWorker) updateStatus(update SyncWorkerStatus) {
455455
w.lock.Lock()
456456
defer w.lock.Unlock()
457457

458-
klog.V(5).Infof("Status change %#v", update)
458+
klog.V(6).Infof("Status change %#v", update)
459459
w.status = update
460460
select {
461461
case w.report <- update:
462462
default:
463-
if klog.V(5).Enabled() {
463+
if klog.V(6).Enabled() {
464464
klog.Infof("Status report channel was full %#v", update)
465465
}
466466
}

0 commit comments

Comments
 (0)