Remove debug left on in error

This commit is contained in:
Simon Marsh 2019-06-28 20:56:41 +01:00
parent b5a23d04a8
commit cb7a98b42b
Signed by: burble
GPG Key ID: 7B9FE8780CFB6593

4
dns.go
View File

@ -9,7 +9,7 @@ package main
import (
"encoding/json"
"errors"
"fmt"
// "fmt"
dns "github.com/miekg/dns"
"github.com/prometheus/client_golang/prometheus"
log "github.com/sirupsen/logrus"
@ -336,7 +336,7 @@ func (s *DNSServer) Query() *DNSResult {
return nil
}
fmt.Printf("Resp: %v\n", resp)
// fmt.Printf("Resp: %v\n", resp)
// was an SOA returned ?
if soa, ok := resp.Answer[0].(*dns.SOA); !ok {