Skip to content

Commit 42eef7f

Browse files
authored
Merge pull request #3249 from iwankgb/verbosity_warning_cpu_vendor
Decreasing verbosity level for "Cannot read vendor id correctly, set empty"
2 parents 9c9f9b9 + 52f448f commit 42eef7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

machine/machine.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ func GetCPUVendorID(procInfo []byte) string {
6262

6363
matches := vendorIDRegexp.FindSubmatch(procInfo)
6464
if len(matches) != 2 {
65-
klog.Warning("Cannot read vendor id correctly, set empty.")
65+
klog.V(4).Info("Cannot read vendor id correctly, set empty.")
6666
return vendorID
6767
}
6868

0 commit comments

Comments
 (0)