Merge pull request #994 from wmuizelaar/fix_extracted_verbose_logging

Change loglevel for extractedFiles to debug. Fixes #901
This commit is contained in:
Tejal Desai 2020-01-24 14:04:50 -08:00 committed by GitHub
commit 308137f46d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -175,7 +175,7 @@ func (cr *CachingCopyCommand) ExecuteCommand(config *v1.Config, buildArgs *docke
cr.extractedFiles, err = util.GetFSFromLayers(RootDir, layers, util.ExtractFunc(cr.extractFn), util.IncludeWhiteout())
logrus.Infof("extractedFiles: %s", cr.extractedFiles)
logrus.Debugf("extractedFiles: %s", cr.extractedFiles)
if err != nil {
return errors.Wrap(err, "extracting fs from image")
}