From c2716755f1da5f29f4be9cbb448fe9293a6ddbc0 Mon Sep 17 00:00:00 2001 From: Christian Kemper Date: Sun, 21 Feb 2016 09:56:05 -0800 Subject: [PATCH] Added missing handle to the s3.Stat log message output --- src/restic/backend/s3/s3.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/restic/backend/s3/s3.go b/src/restic/backend/s3/s3.go index 609a07064..d929d8589 100644 --- a/src/restic/backend/s3/s3.go +++ b/src/restic/backend/s3/s3.go @@ -132,7 +132,7 @@ func (be s3) Save(h backend.Handle, p []byte) (err error) { // Stat returns information about a blob. func (be s3) Stat(h backend.Handle) (backend.BlobInfo, error) { - debug.Log("s3.Stat", "%v") + debug.Log("s3.Stat", "%v", h) path := be.s3path(h.Type, h.Name) obj, err := be.client.GetObject(be.bucketname, path) if err != nil {