fix: reduce log level in disk plugin (#10925)

This commit is contained in:
Joshua Powers 2022-04-26 15:46:28 -06:00 committed by GitHub
parent 23bb23d981
commit f97e50a73d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ func (s *SystemPS) DiskUsage(
du, err := s.PSDiskUsage(mountpoint)
if err != nil {
if s.Log != nil {
s.Log.Errorf("[SystemPS] => error getting disk usage (%q): %v", mountpoint, err)
s.Log.Debugf("[SystemPS] => unable to get disk usage (%q): %v", mountpoint, err)
}
continue
}