From: wessels <> Date: Wed, 5 Aug 1998 13:56:08 +0000 (+0000) Subject: adjust debug level X-Git-Tag: SQUID_3_0_PRE1~2926 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=feb88ffac5dfbd7d3c2132d4d7522b2792fbb586;p=thirdparty%2Fsquid.git adjust debug level --- diff --git a/src/neighbors.cc b/src/neighbors.cc index c1c1da8544..9e564009da 100644 --- a/src/neighbors.cc +++ b/src/neighbors.cc @@ -1,6 +1,6 @@ /* - * $Id: neighbors.cc,v 1.231 1998/07/31 00:15:49 wessels Exp $ + * $Id: neighbors.cc,v 1.232 1998/08/05 07:56:08 wessels Exp $ * * DEBUG: section 15 Neighbor Routines * AUTHOR: Harvest Derived @@ -918,7 +918,7 @@ peerCheckConnectDone(int fd, int status, void *data) peer *p = data; if (status == COMM_OK) { p->tcp_up = PEER_TCP_MAGIC_COUNT; - debug(15, 0) ("TCP connection to %s/%d succeeded\n", + debug(15, 1) ("TCP connection to %s/%d succeeded\n", p->host, p->http_port); } else { eventAdd("peerCheckConnect", peerCheckConnect, p, 60.0, 1); @@ -932,7 +932,7 @@ peerCheckConnectStart(peer * p) { if (!p->tcp_up) return; - debug(15, 0) ("TCP connection to %s/%d failed\n", p->host, p->http_port); + debug(15, 1) ("TCP connection to %s/%d failed\n", p->host, p->http_port); p->tcp_up--; if (p->tcp_up != (PEER_TCP_MAGIC_COUNT - 1)) return;