From: wessels <> Date: Thu, 5 Dec 1996 01:37:30 +0000 (+0000) Subject: debug fix X-Git-Tag: SQUID_3_0_PRE1~5337 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a7011ca4c16474fa1fc0dc17d94ba513ba79ebe0;p=thirdparty%2Fsquid.git debug fix --- diff --git a/src/http.cc b/src/http.cc index b33331fe8e..bba826eb6f 100644 --- a/src/http.cc +++ b/src/http.cc @@ -1,5 +1,5 @@ /* - * $Id: http.cc,v 1.128 1996/12/04 18:22:11 wessels Exp $ + * $Id: http.cc,v 1.129 1996/12/04 18:37:30 wessels Exp $ * * DEBUG: section 11 Hypertext Transfer Protocol (HTTP) * AUTHOR: Harvest Derived @@ -665,7 +665,7 @@ httpBuildRequestHeader(request_t * request, if (l > 4096) l = 4096; xstrncpy(xbuf, t, l); - debug(0, 0, "httpBuildRequestHeader: %s\n", xbuf); + debug(11, 5, "httpBuildRequestHeader: %s\n", xbuf); if (strncasecmp(xbuf, "Proxy-Connection:", 17) == 0) continue; if (strncasecmp(xbuf, "Connection:", 11) == 0) diff --git a/src/main.cc b/src/main.cc index c366c96595..e4dc6dea33 100644 --- a/src/main.cc +++ b/src/main.cc @@ -1,5 +1,5 @@ /* - * $Id: main.cc,v 1.125 1996/12/04 18:22:47 wessels Exp $ + * $Id: main.cc,v 1.126 1996/12/04 18:38:16 wessels Exp $ * * DEBUG: section 1 Startup and Main Loop * AUTHOR: Harvest Derived @@ -440,7 +440,7 @@ serverConnectionsOpen(void) ttl = 0; x = sizeof(char); getsockopt(vizSock, IPPROTO_IP, IP_MULTICAST_TTL, &ttl, &x); - debug(0, 0, "vizSock on FD %d, ttl=%d\n", vizSock, (int) ttl); + debug(1, 0, "vizSock on FD %d, ttl=%d\n", vizSock, (int) ttl); } #else debug(1, 0, "vizSock: Could not join multicast group\n");