1
0
mirror of https://github.com/restic/restic.git synced 2024-07-03 08:50:53 +02:00

Added missing handle to the s3.Stat log message output

This commit is contained in:
Christian Kemper 2016-02-21 09:56:05 -08:00
parent 625c987d23
commit c2716755f1

View File

@ -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 {