From 337110b7a02006084812e1ee1d048560f1e8da68 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Sun, 16 Aug 2015 18:14:22 +0100 Subject: [PATCH] s3: remove verbose debug about invalid md5sums for multipart upload --- s3/s3.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/s3/s3.go b/s3/s3.go index 6e873666f..1c8316e72 100644 --- a/s3/s3.go +++ b/s3/s3.go @@ -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