Merge pull request #3264 from heyitsmine/fix-log-info

fix log string in client example
This commit is contained in:
Marten Seemann 2021-09-06 20:28:15 +01:00 committed by GitHub
commit ebcd98ed43
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -97,9 +97,9 @@ func main() {
log.Fatal(err) log.Fatal(err)
} }
if *quiet { if *quiet {
logger.Infof("Request Body: %d bytes", body.Len()) logger.Infof("Response Body: %d bytes", body.Len())
} else { } else {
logger.Infof("Request Body:") logger.Infof("Response Body:")
logger.Infof("%s", body.Bytes()) logger.Infof("%s", body.Bytes())
} }
wg.Done() wg.Done()