]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
increase debug level on Detected DEAD/REVIVED
authorwessels <>
Sat, 21 Mar 1998 01:03:18 +0000 (01:03 +0000)
committerwessels <>
Sat, 21 Mar 1998 01:03:18 +0000 (01:03 +0000)
src/neighbors.cc

index 219bc5625d02d6470185d692ebff7196e45ccd07..cbb18ed56e187dcc5b0b5f81d1c8e62cfb32d5e5 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: neighbors.cc,v 1.181 1998/03/19 07:13:31 wessels Exp $
+ * $Id: neighbors.cc,v 1.182 1998/03/20 18:03:18 wessels Exp $
  *
  * DEBUG: section 15    Neighbor Routines
  * AUTHOR: Harvest Derived
@@ -480,7 +480,7 @@ neighborsUdpPing(request_t * request,
            /* Neighbor is dead; ping it anyway, but don't expect a reply */
            /* log it once at the threshold */
            if (p->stats.logged_state == PEER_ALIVE) {
-               debug(15, 0) ("Detected DEAD %s: %s/%d/%d\n",
+               debug(15, 1) ("Detected DEAD %s: %s/%d/%d\n",
                    neighborTypeStr(p),
                    p->host, p->http_port, p->icp_port);
                p->stats.logged_state = PEER_DEAD;
@@ -535,7 +535,7 @@ neighborAlive(peer * p, const MemObject * mem, const icp_common_t * header)
     int rtt;
     int n;
     if (p->stats.logged_state == PEER_DEAD && p->tcp_up) {
-       debug(15, 0) ("Detected REVIVED %s: %s/%d/%d\n",
+       debug(15, 1) ("Detected REVIVED %s: %s/%d/%d\n",
            neighborTypeStr(p),
            p->host, p->http_port, p->icp_port);
        p->stats.logged_state = PEER_ALIVE;