]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
msg/async: Lower down the AsyncMessenger's standby warning from debug 15242/head
authorPan Liu <wanjun.lp@alibaba-inc.com>
Tue, 23 May 2017 15:15:14 +0000 (23:15 +0800)
committerPan Liu <wanjun.lp@alibaba-inc.com>
Tue, 23 May 2017 15:15:14 +0000 (23:15 +0800)
level 0 to 10.

Signed-off-by: Pan Liu <wanjun.lp@alibaba-inc.com>
src/msg/async/AsyncConnection.cc

index 8eec5968458529a4a41b2a056fcdc6ab08ab4dda..e2190bfaed6667bcb14c54d59a12fbf872fa4760 100644 (file)
@@ -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;