]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Reduce non-IP debugs message priority
authorAmos Jeffries <squid3@treenet.co.nz>
Mon, 11 Jan 2010 22:36:50 +0000 (11:36 +1300)
committerAmos Jeffries <squid3@treenet.co.nz>
Mon, 11 Jan 2010 22:36:50 +0000 (11:36 +1300)
src/ip/IpAddress.cc

index 222cbad05d81b7bfe1f3f5e8d5bc722e67b3f81b..81a39faea923db6d759e3bd3bc225e8ed57ac6d2 100644 (file)
@@ -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);