diff options
Diffstat (limited to 'src/rhimportd')
-rw-r--r-- | src/rhimportd/uploadWeb.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rhimportd/uploadWeb.go b/src/rhimportd/uploadWeb.go index d60fb22..a4f0951 100644 --- a/src/rhimportd/uploadWeb.go +++ b/src/rhimportd/uploadWeb.go @@ -90,7 +90,7 @@ func webUploadHandler(conf *rhimport.Config, db *rddb.DBChan, sessions *rhimport } defer close(attachmentChan) - rhl.Printf("WebUploadHandler: starting file upload for '%s/%s'", username, sessionid) + rhl.Printf("WebUploadHandler: starting file upload for '%s/%s' (ContentLength: %d)", username, sessionid, r.ContentLength) sizeTotal := uint64(0) hash := sha256.New() body := io.TeeReader(r.Body, hash) @@ -116,7 +116,7 @@ func webUploadHandler(conf *rhimport.Config, db *rddb.DBChan, sessions *rhimport select { case <-cancel: - rhl.Printf("WebUploadHandler: file upload for '%s/%s' got canceld", username, sessionid) + rhl.Printf("WebUploadHandler: file upload for '%s/%s' got canceld after %d bytes", username, sessionid, sizeTotal) webUploadErrorResponse(w, http.StatusNoContent, "canceled") return case attachmentChan <- chunk: |