From: Peter van Dijk Date: Mon, 30 Apr 2018 16:11:59 +0000 (+0200) Subject: auth: lower 'packet too short' loglevel in another place X-Git-Tag: dnsdist-1.3.1~122^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=77562377998e845d5f49b85f9218f122996de188;p=pdns auth: lower 'packet too short' loglevel in another place --- diff --git a/pdns/dnspacket.cc b/pdns/dnspacket.cc index 33aab01b2..a6772191c 100644 --- a/pdns/dnspacket.cc +++ b/pdns/dnspacket.cc @@ -524,7 +524,7 @@ try d_rawpacket.assign(mesg,length); d_wrapped=true; if(length < 12) { - g_log << Logger::Warning << "Ignoring packet: too short from " + g_log << Logger::Debug << "Ignoring packet: too short from " << getRemote() << endl; return -1; }