diff --git a/components/accelerator/nvidia/query/detect.go b/components/accelerator/nvidia/query/detect.go index 2f400746..a574edf8 100644 --- a/components/accelerator/nvidia/query/detect.go +++ b/components/accelerator/nvidia/query/detect.go @@ -32,7 +32,7 @@ func GPUsInstalled(ctx context.Context) (bool, error) { if len(pciDevices) == 0 { return false, nil } - log.Logger.Infow("nvidia PCI devices found", "devices", len(pciDevices)) + log.Logger.Debugw("nvidia PCI devices found", "devices", len(pciDevices)) // now that we have the NVIDIA PCI devices, // call NVML C-based API for NVML API @@ -40,7 +40,7 @@ func GPUsInstalled(ctx context.Context) (bool, error) { if err != nil { return false, err } - log.Logger.Infow("detected nvidia gpu", "gpuDeviceName", gpuDeviceName) + log.Logger.Debugw("detected nvidia gpu", "gpuDeviceName", gpuDeviceName) return true, nil }