From cb7a98b42b1bee90ed340bbdab4f9068fe773af6 Mon Sep 17 00:00:00 2001 From: Simon Marsh Date: Fri, 28 Jun 2019 20:56:41 +0100 Subject: [PATCH] Remove debug left on in error --- dns.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dns.go b/dns.go index 4e2d983..0516437 100644 --- a/dns.go +++ b/dns.go @@ -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 {