logging for lfs verify and locking requests

This commit is contained in:
risk danger olson 2017-04-27 16:27:36 -06:00
parent d578bce559
commit 5d9a2f6ba5
2 changed files with 5 additions and 0 deletions

@ -50,6 +50,7 @@ func (c *lockClient) Lock(remote string, lockReq *lockRequest) (*lockResponse, *
return nil, nil, err
}
req = c.LogRequest(req, "lfs.locks.lock")
res, err := c.DoWithAuth(remote, req)
if err != nil {
return nil, res, err
@ -90,6 +91,7 @@ func (c *lockClient) Unlock(remote, id string, force bool) (*unlockResponse, *ht
return nil, nil, err
}
req = c.LogRequest(req, "lfs.locks.unlock")
res, err := c.DoWithAuth(remote, req)
if err != nil {
return nil, res, err
@ -173,6 +175,7 @@ func (c *lockClient) Search(remote string, searchReq *lockSearchRequest) (*lockL
}
req.URL.RawQuery = q.Encode()
req = c.LogRequest(req, "lfs.locks.search")
res, err := c.DoWithAuth(remote, req)
if err != nil {
return nil, res, err
@ -230,6 +233,7 @@ func (c *lockClient) SearchVerifiable(remote string, vreq *lockVerifiableRequest
return nil, nil, err
}
req = c.LogRequest(req, "lfs.locks.verify")
res, err := c.DoWithAuth(remote, req)
if err != nil {
return nil, res, err

@ -42,6 +42,7 @@ func verifyUpload(c *lfsapi.Client, remote string, t *Transfer) error {
mv := c.GitEnv().Int(maxVerifiesConfigKey, defaultMaxVerifyAttempts)
mv = tools.MaxInt(defaultMaxVerifyAttempts, mv)
req = c.LogRequest(req, "lfs.verify")
for i := 1; i <= mv; i++ {
tracerx.Printf("tq: verify %s attempt #%d (max: %d)", t.Oid[:7], i, mv)