From: Pan Liu Date: Tue, 23 May 2017 15:15:14 +0000 (+0800) Subject: msg/async: Lower down the AsyncMessenger's standby warning from debug X-Git-Tag: v12.1.0~10^2~25^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F15242%2Fhead;p=ceph.git msg/async: Lower down the AsyncMessenger's standby warning from debug level 0 to 10. Signed-off-by: Pan Liu --- diff --git a/src/msg/async/AsyncConnection.cc b/src/msg/async/AsyncConnection.cc index 8eec596845852..e2190bfaed666 100644 --- a/src/msg/async/AsyncConnection.cc +++ b/src/msg/async/AsyncConnection.cc @@ -2065,7 +2065,7 @@ void AsyncConnection::fault() outcoming_bl.clear(); if (!once_ready && !is_queued() && state >=STATE_ACCEPTING && state <= STATE_ACCEPTING_WAIT_CONNECT_MSG_AUTH) { - ldout(async_msgr->cct, 0) << __func__ << " with nothing to send and in the half " + ldout(async_msgr->cct, 10) << __func__ << " with nothing to send and in the half " << " accept state just closed" << dendl; write_lock.unlock(); _stop(); @@ -2074,7 +2074,7 @@ void AsyncConnection::fault() } reset_recv_state(); if (policy.standby && !is_queued() && state != STATE_WAIT) { - ldout(async_msgr->cct,0) << __func__ << " with nothing to send, going to standby" << dendl; + ldout(async_msgr->cct, 10) << __func__ << " with nothing to send, going to standby" << dendl; state = STATE_STANDBY; write_lock.unlock(); return;