From 05aaa60eb53557d157f587da97580e74edecde61 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Tue, 6 Oct 2015 15:37:31 -0400 Subject: [PATCH] msg/simple/Pipe: show keepalives at level 2 Signed-off-by: Sage Weil --- src/msg/simple/Pipe.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/msg/simple/Pipe.cc b/src/msg/simple/Pipe.cc index f14da82e9f006..5c8e84b8e474c 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(); -- 2.39.5