From: Amos Jeffries Date: Mon, 11 Jan 2010 22:36:50 +0000 (+1300) Subject: Reduce non-IP debugs message priority X-Git-Tag: SQUID_3_2_0_1~471 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3f697f0d39941fea3a30251b8bf25deb18fe4c84;p=thirdparty%2Fsquid.git Reduce non-IP debugs message priority --- diff --git a/src/ip/IpAddress.cc b/src/ip/IpAddress.cc index 222cbad05d..81a39faea9 100644 --- a/src/ip/IpAddress.cc +++ b/src/ip/IpAddress.cc @@ -513,7 +513,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);