]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Reduce non-IP debugs message priority
authorAmos Jeffries <squid3@treenet.co.nz>
Wed, 13 Jan 2010 12:47:46 +0000 (01:47 +1300)
committerAmos Jeffries <squid3@treenet.co.nz>
Wed, 13 Jan 2010 12:47:46 +0000 (01:47 +1300)
src/ip/IpAddress.cc

index 47aa203295d084d3fded2878caab8cdf943528e3..f522ae4742e532a319be0a94bc76b823f11b0a60 100644 (file)
@@ -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);