From: Amos Jeffries Date: Wed, 13 Jan 2010 12:47:46 +0000 (+1300) Subject: Reduce non-IP debugs message priority X-Git-Tag: SQUID_3_1_0_16~29 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=08ece27115468ea99fb5f2d86a5ccac4d6d3cb5b;p=thirdparty%2Fsquid.git Reduce non-IP debugs message priority --- diff --git a/src/ip/IpAddress.cc b/src/ip/IpAddress.cc index 47aa203295..f522ae4742 100644 --- a/src/ip/IpAddress.cc +++ b/src/ip/IpAddress.cc @@ -502,7 +502,7 @@ bool IpAddress::LookupHostIP(const char *s, bool nodns) #endif if ( (err = xgetaddrinfo(s, NULL, &want, &res)) != 0) { - debugs(14,1, HERE << "Given Bad IP '" << s << "': " << xgai_strerror(err) ); + debugs(14,3, HERE << "Given Bad IP '" << s << "': " << xgai_strerror(err) ); /* free the memory xgetaddrinfo() dynamically allocated. */ if (res) { xfreeaddrinfo(res);