From 9565b5194cc57ef774a4e19011501f705617d9f2 Mon Sep 17 00:00:00 2001 From: Skyxim Date: Mon, 11 Jul 2022 22:18:24 +0800 Subject: [PATCH] chore: remove log --- component/http/http.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/component/http/http.go b/component/http/http.go index 6a11258b..5f7968f6 100644 --- a/component/http/http.go +++ b/component/http/http.go @@ -4,7 +4,6 @@ import ( "context" "github.com/Dreamacro/clash/component/tls" "github.com/Dreamacro/clash/listener/inner" - "github.com/Dreamacro/clash/log" "io" "net" "net/http" @@ -53,7 +52,6 @@ func HttpRequest(ctx context.Context, url, method string, header map[string][]st TLSHandshakeTimeout: 10 * time.Second, ExpectContinueTimeout: 1 * time.Second, DialContext: func(ctx context.Context, network, address string) (net.Conn, error) { - log.Infoln(urlRes.String()) conn := inner.HandleTcp(address, urlRes.Hostname()) return conn, nil },