forked from TrueCloudLab/restic
Added missing handle to the s3.Stat log message output
This commit is contained in:
parent
625c987d23
commit
c2716755f1
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue