updating print

This commit is contained in:
jackspirou 2015-11-20 18:48:16 -06:00
parent 8086777e78
commit f8261dbb59
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ func main() {
}
// print out
fmt.Printf("%d\n URL: %s\n METHOD: %s\n HEADERS: %s\n BODY: %s\n RESPONSE STATUS: %s\n RESPONSE: %s", i+1, req.URL, req.Method, req.Header, req.Body, resp.Status, string(body))
fmt.Printf("%d URL: %s\n METHOD: %s\n HEADERS: %s\n BODY: %s\n RESPONSE STATUS: %s\n RESPONSE: %s", i+1, req.URL, req.Method, req.Header, req.Body, resp.Status, string(body))
}
}
}