print request body in example client

This commit is contained in:
Marten Seemann 2017-01-05 12:51:44 +07:00
parent 6dd297379b
commit cc97a2fba4
No known key found for this signature in database
GPG key ID: 3603F40B121FCDEA

View file

@ -1,7 +1,9 @@
package main
import (
"bytes"
"flag"
"io"
"net/http"
"sync"
@ -34,6 +36,14 @@ func main() {
panic(err)
}
utils.Infof("Got response for %s: %#v", addr, rsp)
body := &bytes.Buffer{}
_, err = io.Copy(body, rsp.Body)
if err != nil {
panic(err)
}
utils.Infof("Request Body:")
utils.Infof("%s", body.Bytes())
wg.Done()
}(addr)
}