From c81b74859cf62a5115caa8f66a6c8ff3c39fb0c9 Mon Sep 17 00:00:00 2001 From: Josef Kopriva Date: Thu, 14 Dec 2023 14:22:21 +0100 Subject: [PATCH] Remove sandbox logging Signed-off-by: Josef Kopriva --- pkg/sandbox/sandbox.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/pkg/sandbox/sandbox.go b/pkg/sandbox/sandbox.go index 7bdff0947..db71032c4 100644 --- a/pkg/sandbox/sandbox.go +++ b/pkg/sandbox/sandbox.go @@ -145,19 +145,13 @@ type LoggingRoundTripper struct { } func (lrt LoggingRoundTripper) RoundTrip(req *http.Request) (res *http.Response, e error) { - // Do "before sending requests" actions here. - GinkgoWriter.Printf("Sandbox proxy sending request to %v:%v %v\n", req.URL, req.Header, req.Body) - // Send the request, get the response (or the error) res, e = lrt.Proxied.RoundTrip(req) // Handle the result. if e != nil { GinkgoWriter.Printf("Sandbox proxy error: %v", e) - } else { - GinkgoWriter.Printf("Sandbox proxy received %v response\n", res.Status) } - return res, e }