From b3987e175476cf5e94d94e57a469df9d3c8d91e2 Mon Sep 17 00:00:00 2001 From: mesutoezdil Date: Mon, 8 Jun 2026 22:08:38 +0200 Subject: [PATCH] remove redundant [DEBUG] prefix from klog calls --- cmd/gpu-kubelet-plugin/vfio-device.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/gpu-kubelet-plugin/vfio-device.go b/cmd/gpu-kubelet-plugin/vfio-device.go index 54c935daa..c81323c4e 100644 --- a/cmd/gpu-kubelet-plugin/vfio-device.go +++ b/cmd/gpu-kubelet-plugin/vfio-device.go @@ -119,11 +119,11 @@ func (vm *VfioPciManager) WaitForGPUFree(ctx context.Context, info *VfioDeviceIn return nil } err = fmt.Errorf("unexpected error checking if gpu device %q is free: %w", info.PciBusID, cmdErr) - klog.V(6).Infof("[DEBUG] %s", err.Error()) + klog.V(6).Infof("%v", err) continue } err = fmt.Errorf("gpu device %q has open fds by process(es): %q", info.PciBusID, string(out)) - klog.V(6).Infof("[DEBUG] %s", err.Error()) + klog.V(6).Infof("%v", err) } } }