Skip to content

Commit 0a9b177

Browse files
committed
node: cpumgr: log: make errors louder
We have a special case which is not supposed to happen. Make it louder with default log settings to make sure this is visible. Signed-off-by: Francesco Romani <[email protected]>
1 parent 2dc5ddd commit 0a9b177

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/kubelet/cm/cpumanager/cpu_manager.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ func (m *manager) reconcileState() (success []reconciledContainer, failure []rec
467467
cset := m.state.GetCPUSetOrDefault(string(pod.UID), container.Name)
468468
if cset.IsEmpty() {
469469
// NOTE: This should not happen outside of tests.
470-
klog.V(4).InfoS("ReconcileState: skipping container; assigned cpuset is empty", "pod", klog.KObj(pod), "containerName", container.Name)
470+
klog.V(2).InfoS("ReconcileState: skipping container; assigned cpuset is empty", "pod", klog.KObj(pod), "containerName", container.Name)
471471
failure = append(failure, reconciledContainer{pod.Name, container.Name, containerID})
472472
continue
473473
}

0 commit comments

Comments
 (0)