From 7184b68d8dff7942da930a736afc1d957e1c6391 Mon Sep 17 00:00:00 2001 From: Remi Gacogne Date: Thu, 21 Jul 2016 16:11:06 +0200 Subject: [PATCH] dnsdist: Don't log an error when parsing an invalid UDP query It can still be displayed in verbose mode, but we don't want to flood our logs for this. --- pdns/dnsdist.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdns/dnsdist.cc b/pdns/dnsdist.cc index a0a550dca1..6645955fde 100644 --- a/pdns/dnsdist.cc +++ b/pdns/dnsdist.cc @@ -1092,7 +1092,7 @@ try vinfolog("Got query from %s, relayed to %s", remote.toStringWithPort(), ss->getName()); } catch(std::exception& e){ - errlog("Got an error in UDP question thread while parsing a query from %s, id %d: %s", remote.toStringWithPort(), queryId, e.what()); + vinfolog("Got an error in UDP question thread while parsing a query from %s, id %d: %s", remote.toStringWithPort(), queryId, e.what()); } } return 0; -- 2.47.2