Reduce log level for adding file message

This makes for massive logs and with it at debug level will be simpler to look at the output of kaniko
This commit is contained in:
Fred Cox 2019-03-25 22:14:47 +02:00 committed by GitHub
parent c8fabdf6e4
commit 82f4179ba6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ func (s *Snapshotter) scanFullFilesystem() ([]string, []string, error) {
return nil, nil, err
}
if fileChanged {
logrus.Infof("Adding %s to layer, because it was changed.", path)
logrus.Debugf("Adding %s to layer, because it was changed.", path)
filesToAdd = append(filesToAdd, path)
}
}