]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
remove cruft from debug level 1
authorwessels <>
Thu, 20 Aug 1998 21:30:22 +0000 (21:30 +0000)
committerwessels <>
Thu, 20 Aug 1998 21:30:22 +0000 (21:30 +0000)
src/internal.cc
src/net_db.cc

index 0987242b52bde4ff5e9e84a594e5a408f8000d17..086532effa4ad1158b6bf70ba8e6e3e0d7521224 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: internal.cc,v 1.13 1998/08/05 07:49:43 wessels Exp $
+ * $Id: internal.cc,v 1.14 1998/08/20 15:30:22 wessels Exp $
  *
  * DEBUG: section 76    Internal Squid Object handling
  * AUTHOR: Duane, Alex, Henrik
@@ -44,7 +44,7 @@ internalStart(request_t * request, StoreEntry * entry)
 {
     ErrorState *err;
     const char *upath = strBuf(request->urlpath);
-    debug(76, 1) ("internalStart: %s requesting '%s'\n",
+    debug(76, 3) ("internalStart: %s requesting '%s'\n",
        inet_ntoa(request->client_addr), upath);
     if (0 == strcmp(upath, "/squid-internal-dynamic/netdb"))
        netdbBinaryExchange(entry);
index 8433c1e7fddf7c0f49b5fcfb8118d08101bc0f5a..3fa9c4e06a0d69bedfb2e01a8dc877eacce0b3b6 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: net_db.cc,v 1.122 1998/08/13 21:14:40 wessels Exp $
+ * $Id: net_db.cc,v 1.123 1998/08/20 15:30:23 wessels Exp $
  *
  * DEBUG: section 38    Network Measurement Database
  * AUTHOR: Duane Wessels
@@ -969,7 +969,7 @@ netdbDeleteAddrNetwork(struct in_addr addr)
     netdbEntry *n = netdbLookupAddr(addr);
     if (n == NULL)
        return;
-    debug(38, 1) ("netdbDeleteAddrNetwork: %s\n", n->network);
+    debug(38, 3) ("netdbDeleteAddrNetwork: %s\n", n->network);
     netdbRelease(n);
 #endif
 }
@@ -1047,7 +1047,7 @@ netdbExchangeStart(void *data)
     cbdataLock(p);
     ex->p = p;
     uri = internalRemoteUri(p->host, p->http_port, "/squid-internal-dynamic/", "netdb");
-    debug(38, 1) ("netdbExchangeStart: Requesting '%s'\n", uri);
+    debug(38, 3) ("netdbExchangeStart: Requesting '%s'\n", uri);
     assert(NULL != uri);
     ex->r = urlParse(METHOD_GET, uri);
     if (NULL == ex->r) {