Skip to content

Commit 4ba166a

Browse files
committed
qat: make device ID scan less verbose
currently, the QAT plugin warns when it finds a PCI ID that is not an enabled QAT device. This is too verbose so lower the log priority to "Info". Signed-off-by: Mikko Ylinen <[email protected]>
1 parent 834f598 commit 4ba166a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/qat_plugin/dpdkdrv/dpdkdrv.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ func (dp *DevicePlugin) isValidVfDeviceID(vfDevID string) bool {
476476
}
477477
}
478478

479-
klog.Warningf("device ID %s is not a QAT device or not enabled by kernelVfDrivers.", vfDevID)
479+
klog.V(3).Infof("device ID %s is not a QAT device or not enabled by kernelVfDrivers.", vfDevID)
480480

481481
return false
482482
}

0 commit comments

Comments
 (0)