fixing vet error in existing notary code

Signed-off-by: David Lawrence <david.lawrence@docker.com> (github: endophage)
This commit is contained in:
David Lawrence 2015-10-27 16:37:41 -07:00
parent 2833a88292
commit 21ee24bc30
1 changed files with 1 additions and 1 deletions

View File

@ -196,7 +196,7 @@ func GetTimestampKeyHandler(ctx context.Context, w http.ResponseWriter, r *http.
key, err := timestamp.GetOrCreateTimestampKey(gun, store, crypto, keyAlgorithm)
if err != nil {
logger.Error("500 GET timestamp key: %v", err)
logger.Errorf("500 GET timestamp key: %v", err)
return errors.ErrUnknown.WithDetail(err)
}