Merge pull request #106 from bmelville/104

Pretty print JSON responses from service.
pull/103/merge
vaikas-google 9 years ago
commit 47a7914102

@ -169,7 +169,13 @@ func main() {
func callService(path, method, action string, reader io.ReadCloser) {
u := fmt.Sprintf("%s/%s", *service, path)
fmt.Println(callHttp(u, method, action, reader))
resp := callHttp(u, method, action, reader)
var prettyJSON bytes.Buffer
if err := json.Indent(&prettyJSON, []byte(resp), "", " "); err != nil {
log.Fatalf("Failed to parse JSON response from service: %s", resp)
}
fmt.Println(prettyJSON.String())
}
func callHttp(path, method, action string, reader io.ReadCloser) string {

Loading…
Cancel
Save