From 1072f2868d688ebbaa0d1101f3896921b2076fdf Mon Sep 17 00:00:00 2001 From: Brian Brazil Date: Wed, 7 Feb 2018 15:16:20 +0000 Subject: [PATCH] Fix log level regression in #533 --- collector/filesystem_linux.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collector/filesystem_linux.go b/collector/filesystem_linux.go index e10bf156..a501b2b3 100644 --- a/collector/filesystem_linux.go +++ b/collector/filesystem_linux.go @@ -54,7 +54,7 @@ func (c *filesystemCollector) GetStats() ([]filesystemStats, error) { labels: labels, deviceError: 1, }) - log.Errorf("Error on statfs() system call for %q: %s", labels.mountPoint, err) + log.Debugf("Error on statfs() system call for %q: %s", labels.mountPoint, err) continue }