From 79cb9451bd38e9a7172a7bd03ed21fd45a1b13f4 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Sat, 2 Jan 2021 22:59:21 +0100 Subject: [PATCH] Remove log messages that are not really needed --- dnscrypt-proxy/coldstart.go | 1 - dnscrypt-proxy/plugin_captive_portal.go | 1 - 2 files changed, 2 deletions(-) diff --git a/dnscrypt-proxy/coldstart.go b/dnscrypt-proxy/coldstart.go index 587cc5d3..680b8c2f 100644 --- a/dnscrypt-proxy/coldstart.go +++ b/dnscrypt-proxy/coldstart.go @@ -113,7 +113,6 @@ func handleColdStartClient(clientPc *net.UDPConn, cancelChannel chan struct{}, i } if response, err := respMsg.Pack(); err == nil { clientPc.WriteTo(response, clientAddr) - dlog.Debug("Response to coldstart captive portal query synthesized") } return false } diff --git a/dnscrypt-proxy/plugin_captive_portal.go b/dnscrypt-proxy/plugin_captive_portal.go index 93df3076..87a11cb5 100644 --- a/dnscrypt-proxy/plugin_captive_portal.go +++ b/dnscrypt-proxy/plugin_captive_portal.go @@ -39,7 +39,6 @@ func (plugin *PluginCaptivePortal) Eval(pluginsState *PluginsState, msg *dns.Msg if synth := HandleCaptivePortalQuery(msg, question, ips); synth != nil { pluginsState.synthResponse = synth pluginsState.action = PluginsActionSynth - dlog.Notice("Response to captive portal query synthesized") } return nil }