Remove log messages that are not really needed

This commit is contained in:
Frank Denis 2021-01-02 22:59:21 +01:00
parent 662b4c0c62
commit 79cb9451bd
2 changed files with 0 additions and 2 deletions

View File

@ -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
}

View File

@ -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
}