From 6d2bc0a8f264164233bc22f4e89a44df9dc57526 Mon Sep 17 00:00:00 2001 From: Chris O'Haver Date: Fri, 12 Oct 2018 13:24:40 -0400 Subject: plugin/loop: tweak loop detected msg, add troubleshooting section (#2185) Automatically submitted. --- plugin/loop/loop.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugin/loop/loop.go') diff --git a/plugin/loop/loop.go b/plugin/loop/loop.go index 56e039c9c..0624d3dd1 100644 --- a/plugin/loop/loop.go +++ b/plugin/loop/loop.go @@ -49,7 +49,7 @@ func (l *Loop) ServeDNS(ctx context.Context, w dns.ResponseWriter, r *dns.Msg) ( } if l.seen() > 2 { - log.Fatalf("Seen \"HINFO IN %s\" more than twice, loop detected", l.qname) + log.Fatalf("Forwarding loop detected in \"%s\" zone. Exiting. See https://coredns.io/plugins/loop#troubleshooting. Probe query: \"HINFO %s\".", l.zone, l.qname) } return plugin.NextOrFailure(l.Name(), l.Next, ctx, w, r) -- cgit v1.2.3