Browse Source

Merge pull request #40631 from thaJeztah/remove_debug_message

Remove "could not get checksum with tar-split" debug message
Brian Goff 5 years ago
parent
commit
6004b9ad52
1 changed files with 0 additions and 1 deletions
  1. 0 1
      layer/migration.go

+ 0 - 1
layer/migration.go

@@ -15,7 +15,6 @@ import (
 func (ls *layerStore) ChecksumForGraphID(id, parent, oldTarDataPath, newTarDataPath string) (diffID DiffID, size int64, err error) {
 func (ls *layerStore) ChecksumForGraphID(id, parent, oldTarDataPath, newTarDataPath string) (diffID DiffID, size int64, err error) {
 	defer func() {
 	defer func() {
 		if err != nil {
 		if err != nil {
-			logrus.Debugf("could not get checksum for %q with tar-split: %q", id, err)
 			diffID, size, err = ls.checksumForGraphIDNoTarsplit(id, parent, newTarDataPath)
 			diffID, size, err = ls.checksumForGraphIDNoTarsplit(id, parent, newTarDataPath)
 		}
 		}
 	}()
 	}()