From faadb2af866b1d713db4af225e74ef30fea9d850 Mon Sep 17 00:00:00 2001 From: Jason Hall Date: Tue, 19 Feb 2019 14:54:26 -0500 Subject: [PATCH] Log "Skipping paths under..." to debug (#571) This reduces noise in the log output, since it isn't terribly useful to most end users. --- pkg/snapshot/snapshot.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/snapshot/snapshot.go b/pkg/snapshot/snapshot.go index c32118b1e..bf71c506b 100644 --- a/pkg/snapshot/snapshot.go +++ b/pkg/snapshot/snapshot.go @@ -162,7 +162,7 @@ func (s *Snapshotter) scanFullFilesystem() ([]string, []string, error) { Callback: func(path string, ent *godirwalk.Dirent) error { if util.IsInWhitelist(path) { if util.IsDestDir(path) { - logrus.Infof("Skipping paths under %s, as it is a whitelisted directory", path) + logrus.Debugf("Skipping paths under %s, as it is a whitelisted directory", path) return filepath.SkipDir } return nil