How do you handle HTTP client server logging in Go?
In Go, there are several ways to handle logging in an HTTP client or server. One common way is to use the log package from the standard library. Here's an example of how to use the log package to log HTTP requests and responses in a client:
Client Server Logging
Example
package main
import (
"log"
"net/http"
"net/http/httputil"
"time"
)
func main() {
client := &http.Client{
Timeout: 10 * time.Second,
}
req, err := http.NewRequest("GET", "https://example.com", nil)
if err != nil {
log.Fatal(err)
}
// Use httputil.DumpRequestOut to log the outgoing request
reqBytes, err := httputil.DumpRequestOut(req, true)
if err != nil {
log.Fatal(err)
}
log.Printf("Request: %s", reqBytes)
resp, err := client.Do(req)
if err != nil {
log.Fatal(err)
}
// Use httputil.DumpResponse to log the incoming response
respBytes, err := httputil.DumpResponse(resp, true)
if err != nil {
log.Fatal(err)
}
log.Printf("Response: %s", respBytes)
defer resp.Body.Close()
}
This code sets up an HTTP client with a timeout of 10 seconds, creates a GET request to https://example.com, logs the outgoing request using httputil.DumpRequestOut, sends the request using the client, logs the incoming response using httputil.DumpResponse, and finally closes the response body.
You can customize the logging output to suit your needs, for example by using different log levels or formats, or by logging additional information such as timestamps or request/response headers.
Most Helpful This Week
What is the default HTTP server in Go?
How do you handle HTTP client caching in Go?
What is an HTTP client in Go?
How do you handle HTTP server shutdown gracefully in Go?
How do you read cookies in an HTTP request with an HTTP client in Go?
How do you handle HTTP authentication with an HTTP client in Go?
Most Helpful This Week
Example of Switch Case with Break in For LoopHow to check string contains uppercase lowercase character in Golang?Different ways for Integer to String ConversionsSierpinski Carpet in Go Programming LanguageDifferent ways to convert Byte Array into StringRegex to extract image name from HTML in GolangPassing multiple string arguments to a variadic functionHow to verify a string only contains letters, numbers, underscores, and dashes in Golang?Functions mess (recursive anonymous function) in GolangHow to blur an image in Golang?