diff options
Diffstat (limited to 'patchset.http.go')
| -rw-r--r-- | patchset.http.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/patchset.http.go b/patchset.http.go index 35330aa..8bce433 100644 --- a/patchset.http.go +++ b/patchset.http.go @@ -121,6 +121,8 @@ func (p *Patchsets) SendReply(w http.ResponseWriter, reqPB *httppb.HttpRequest) i, err := w.Write(data) if err != nil { reqPB.Errors = append(reqPB.Errors, log.Sprintf("i=%d %v", i, err)) + } else { + reqPB.Errors = append(reqPB.Errors, log.Sprintf("sent %d bytes back to client ok", i)) } return err } |
