Remove overly verbose DNS-SD logging line.

Change-Id: Ie4534437ab88b9a6b99f5cb6c2f32c9588c1fff6
This commit is contained in:
Julius Volz 2014-01-24 16:09:41 +01:00
parent 0378c2ca1f
commit b382e8b7bd

View File

@ -136,7 +136,6 @@ func lookupSRV(name string) (*dns.Msg, error) {
func lookup(name string, queryType uint16, client *dns.Client, server string, port int, suffix string, edns bool) (*dns.Msg, error) { func lookup(name string, queryType uint16, client *dns.Client, server string, port int, suffix string, edns bool) (*dns.Msg, error) {
msg := &dns.Msg{} msg := &dns.Msg{}
lname := strings.Join([]string{name, suffix}, ".") lname := strings.Join([]string{name, suffix}, ".")
glog.Warning("Resolving ", dns.Fqdn(lname))
msg.SetQuestion(dns.Fqdn(lname), queryType) msg.SetQuestion(dns.Fqdn(lname), queryType)
if edns { if edns {