Remove some printlns

This commit is contained in:
Miek Gieben
2016-11-10 14:09:49 +00:00
parent 9328a8e7a4
commit 8dd47dd932
2 changed files with 0 additions and 3 deletions

View File

@@ -340,11 +340,9 @@ func cnameForType(targets []dns.RR, origQtype uint16) []dns.RR {
func (z *Zone) externalLookup(state request.Request, target string, qtype uint16) []dns.RR {
m, e := z.Proxy.Lookup(state, target, qtype)
if e != nil {
println(e.Error())
// TODO(miek): debugMsg for this as well? Log?
return nil
}
println(m.String())
return m.Answer
}