/*
- * $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
{
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);
/*
- * $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
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
}
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) {