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: auth-4.1.2~2^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F6573%2Fhead;p=thirdparty%2Fpdns.git auth: lower 'packet too short' loglevel in another place (cherry picked from commit 77562377998e845d5f49b85f9218f122996de188) --- diff --git a/pdns/dnspacket.cc b/pdns/dnspacket.cc index 7e318f8db7..872a5e6e7e 100644 --- a/pdns/dnspacket.cc +++ b/pdns/dnspacket.cc @@ -531,7 +531,7 @@ try d_rawpacket.assign(mesg,length); d_wrapped=true; if(length < 12) { - L << Logger::Warning << "Ignoring packet: too short from " + L << Logger::Debug << "Ignoring packet: too short from " << getRemote() << endl; return -1; }