Skip to content

Commit a585bd7

Browse files
committed
node: device-mgr: Keep log level consistent across all gRPC calls
Signed-off-by: Swati Sehgal <[email protected]>
1 parent 4b613ae commit a585bd7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/kubelet/cm/devicemanager/manager.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -882,7 +882,7 @@ func (m *ManagerImpl) allocateContainerResources(pod *v1.Pod, container *v1.Cont
882882
devs := allocDevices.UnsortedList()
883883
// TODO: refactor this part of code to just append a ContainerAllocationRequest
884884
// in a passed in AllocateRequest pointer, and issues a single Allocate call per pod.
885-
klog.V(3).InfoS("Making allocation request for device plugin", "devices", devs, "resourceName", resource, "pod", klog.KObj(pod), "containerName", container.Name)
885+
klog.V(4).InfoS("Making allocation request for device plugin", "devices", devs, "resourceName", resource, "pod", klog.KObj(pod), "containerName", container.Name)
886886
resp, err := eI.e.allocate(devs)
887887
metrics.DevicePluginAllocationDuration.WithLabelValues(resource).Observe(metrics.SinceInSeconds(startRPCTime))
888888
if err != nil {

0 commit comments

Comments
 (0)