Merge pull request #815 from prometheus/debug-log

Fix log level regression in #533
This commit is contained in:
Tobias Schmidt 2018-02-07 16:33:14 +01:00 committed by GitHub
commit 9a5bd5f8e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ func (c *filesystemCollector) GetStats() ([]filesystemStats, error) {
labels: labels, labels: labels,
deviceError: 1, 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 continue
} }