2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-04 01:50:48 +00:00

repository: Improve error message

This commit is contained in:
Alexander Neumann 2015-07-11 15:51:42 +02:00
parent 8dba52dd71
commit cbcf58f1c0

View File

@ -2,7 +2,6 @@ package repository
import (
"encoding/json"
"errors"
"fmt"
"io"
"sync"
@ -79,7 +78,7 @@ func (idx *Index) Lookup(id backend.ID) (packID backend.ID, tpe pack.BlobType, o
}
debug.Log("Index.Lookup", "id %v not found", id.Str())
return nil, pack.Data, 0, 0, errors.New("id not found")
return nil, pack.Data, 0, 0, fmt.Errorf("id %v not found in index", id)
}
// Has returns true iff the id is listed in the index.