1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #7960 from vbatts/vbatts-tarsum_debugf_not_infof

tarsum: use Debugf, not Infof
This commit is contained in:
Michael Crosby 2014-09-09 11:51:36 -07:00
commit b5a4c70455

View file

@ -177,11 +177,11 @@ func (ts *TarSum) Sum(extra []byte) string {
h.Write(extra)
}
for _, sum := range sums {
log.Infof("-->%s<--", sum)
log.Debugf("-->%s<--", sum)
h.Write([]byte(sum))
}
checksum := "tarsum+sha256:" + hex.EncodeToString(h.Sum(nil))
log.Infof("checksum processed: %s", checksum)
log.Debugf("checksum processed: %s", checksum)
return checksum
}