Merge pull request #1015 from tbonfort/whiteout-loglevel

Change loglevel for whiteouts to debug
This commit is contained in:
Tejal Desai 2020-01-31 10:49:19 -08:00 committed by GitHub
commit c5e1c93949
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ func (s *Snapshotter) scanFullFilesystem() ([]string, []string, error) {
dir := filepath.Dir(path)
if _, ok := memFs[dir]; ok {
if s.l.MaybeAddWhiteout(path) {
logrus.Infof("Adding whiteout for %s", path)
logrus.Debugf("Adding whiteout for %s", path)
filesToWhiteOut = append(filesToWhiteOut, path)
}
}