@cryptotaxi247 / netdata-1 / commits / a21f27af5

go.d smartctl: don't log found devices on every scan (#17934)

Ilya Mashchenko committed Jun 17, 2024 at 20:18 UTC a21f27af5b7daf0e70581dc69ffc9676583ab771
1 file changed +1 -1
src/go/collectors/go.d.plugin/modules/smartctl/scan.go
+1 -1
@@ -69,7 +69,7 @@ func (s *Smartctl) scanDevices() (map[string]*scanDevice, error) {
69 return nil, errors.New("no devices found during scan")
70 }
71
72 - s.Infof("smartctl scan found %d devices", len(devices))
72 + s.Debugf("smartctl scan found %d devices", len(devices))
73
74 return devices, nil
75 }