From: Sage Weil Date: Tue, 6 Oct 2015 19:37:31 +0000 (-0400) Subject: msg/simple/Pipe: show keepalives at level 2 X-Git-Tag: v10.0.1~26^2~26 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=05aaa60eb53557d157f587da97580e74edecde61;p=ceph.git msg/simple/Pipe: show keepalives at level 2 Signed-off-by: Sage Weil --- diff --git a/src/msg/simple/Pipe.cc b/src/msg/simple/Pipe.cc index f14da82e9f00..5c8e84b8e474 100644 --- a/src/msg/simple/Pipe.cc +++ b/src/msg/simple/Pipe.cc @@ -1515,7 +1515,7 @@ void Pipe::reader() } if (tag == CEPH_MSGR_TAG_KEEPALIVE) { - ldout(msgr->cct,20) << "reader got KEEPALIVE" << dendl; + ldout(msgr->cct,2) << "reader got KEEPALIVE" << dendl; pipe_lock.Lock(); connection_state->set_last_keepalive(ceph_clock_now(NULL)); continue; @@ -1532,15 +1532,15 @@ void Pipe::reader() } else { send_keepalive_ack = true; keepalive_ack_stamp = utime_t(t); - ldout(msgr->cct,20) << "reader got KEEPALIVE2 " << keepalive_ack_stamp - << dendl; + ldout(msgr->cct,2) << "reader got KEEPALIVE2 " << keepalive_ack_stamp + << dendl; connection_state->set_last_keepalive(ceph_clock_now(NULL)); cond.Signal(); } continue; } if (tag == CEPH_MSGR_TAG_KEEPALIVE2_ACK) { - ldout(msgr->cct,20) << "reader got KEEPALIVE_ACK" << dendl; + ldout(msgr->cct,2) << "reader got KEEPALIVE_ACK" << dendl; struct ceph_timespec t; int rc = tcp_read((char*)&t, sizeof(t)); pipe_lock.Lock();