s3: remove verbose debug about invalid md5sums for multipart upload

This commit is contained in:
Nick Craig-Wood 2015-08-16 18:14:22 +01:00
parent 83733205f6
commit 337110b7a0
1 changed files with 1 additions and 1 deletions

View File

@ -502,7 +502,7 @@ func (o *FsObjectS3) Md5sum() (string, error) {
etag := strings.Trim(strings.ToLower(o.etag), `"`)
// Check the etag is a valid md5sum
if !matchMd5.MatchString(etag) {
fs.Debug(o, "Invalid md5sum (probably multipart uploaded) - ignoring: %q", etag)
// fs.Debug(o, "Invalid md5sum (probably multipart uploaded) - ignoring: %q", etag)
return "", nil
}
return etag, nil