summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorIlya Mashchenko <ilya@netdata.cloud>2024-06-17 20:18:18 +0300
committerGitHub <noreply@github.com>2024-06-17 20:18:18 +0300
commita21f27af5b7daf0e70581dc69ffc9676583ab771 (patch)
tree7288cb8ab93bed036159a7018e1cf5c640513901 /src
parent8dd495cb57c19d6db9f207e90ebcaf8d38388ce8 (diff)
go.d smartctl: don't log found devices on every scan (#17934)
Diffstat (limited to 'src')
-rw-r--r--src/go/collectors/go.d.plugin/modules/smartctl/scan.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/go/collectors/go.d.plugin/modules/smartctl/scan.go b/src/go/collectors/go.d.plugin/modules/smartctl/scan.go
index 4a9224debc..9310938f67 100644
--- a/src/go/collectors/go.d.plugin/modules/smartctl/scan.go
+++ b/src/go/collectors/go.d.plugin/modules/smartctl/scan.go
@@ -69,7 +69,7 @@ func (s *Smartctl) scanDevices() (map[string]*scanDevice, error) {
return nil, errors.New("no devices found during scan")
}
- s.Infof("smartctl scan found %d devices", len(devices))
+ s.Debugf("smartctl scan found %d devices", len(devices))
return devices, nil
}