From bf169d3eb14b7841a65bfc03ac053fa2c52d3836 Mon Sep 17 00:00:00 2001 From: Aykhan Shahsuvarov Date: Sat, 23 Nov 2024 16:27:46 +0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8=20Remove=20debug=20print?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- requests/run.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/requests/run.go b/requests/run.go index 3b2407a..a90e58a 100644 --- a/requests/run.go +++ b/requests/run.go @@ -2,7 +2,6 @@ package requests import ( "context" - "fmt" "sync" "time" @@ -25,8 +24,6 @@ import ( // - Responses: A collection of responses from the executed requests. // - error: An error if the operation fails, such as no internet connection or an interrupt. func Run(ctx context.Context, requestConfig *config.RequestConfig) (Responses, error) { - fmt.Println("No Proxy Check:", requestConfig.NoProxyCheck) - checkConnectionCtx, checkConnectionCtxCancel := context.WithTimeout(ctx, 8*time.Second) if !checkConnection(checkConnectionCtx) { checkConnectionCtxCancel()