From 82317bd63ebe6386303700ef71152b5aff2b09ed Mon Sep 17 00:00:00 2001 From: Star Brilliant Date: Tue, 29 Oct 2019 03:23:00 +0800 Subject: [PATCH] Remove weird logs, fix #59 --- doh-server/config.go | 1 - 1 file changed, 1 deletion(-) diff --git a/doh-server/config.go b/doh-server/config.go index 7507a43..edb9f64 100644 --- a/doh-server/config.go +++ b/doh-server/config.go @@ -97,7 +97,6 @@ var rxUpstreamWithTypePrefix = regexp.MustCompile("^[a-z-]+(:)") func addressAndType(us string) (string, string) { p := rxUpstreamWithTypePrefix.FindStringSubmatchIndex(us) - fmt.Println(p) if len(p) != 4 { return "", "" }