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()