]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
adjust debug level
authorwessels <>
Wed, 5 Aug 1998 13:56:08 +0000 (13:56 +0000)
committerwessels <>
Wed, 5 Aug 1998 13:56:08 +0000 (13:56 +0000)
src/neighbors.cc

index c1c1da8544d94b404af01b2d390aa6ca988ed4f2..9e564009da20fae746f5e91b57a2c445c7bfb96d 100644 (file)
@@ -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;