From 2fe555aeb95b8d0f4f0004c0bc15a4a02598a1bf Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Sat, 22 Dec 2012 18:45:27 -0800 Subject: [PATCH] s3: remove debug logging Change-Id: Idd4c3538362dd14b59ae6b150992d806ae7ff6b8 --- pkg/misc/amazon/s3/client.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkg/misc/amazon/s3/client.go b/pkg/misc/amazon/s3/client.go index 00fd4c8a4..8332f11d5 100644 --- a/pkg/misc/amazon/s3/client.go +++ b/pkg/misc/amazon/s3/client.go @@ -82,9 +82,6 @@ func (c *Client) Buckets() ([]*Bucket, error) { // Returns 0, os.ErrNotExist if not on S3, otherwise reterr is real. func (c *Client) Stat(name, bucket string) (size int64, reterr error) { - defer func() { - log.Printf("s3 client: Stat(%q, %q) = %d, %v", name, bucket, size, reterr) - }() req := newReq("http://" + bucket + ".s3.amazonaws.com/" + name) req.Method = "HEAD" c.Auth.SignRequest(req)