From: Patrick Donnelly Date: Sun, 2 Sep 2018 19:51:46 +0000 (-0700) Subject: msg: lower verbosity on normal event X-Git-Tag: v14.0.1~392^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=351831834d4f9c66395539d7015bcdb017c8dba6;p=ceph.git msg: lower verbosity on normal event Fixes: http://tracker.ceph.com/issues/35251 Signed-off-by: Patrick Donnelly --- diff --git a/src/msg/async/AsyncConnection.cc b/src/msg/async/AsyncConnection.cc index 15027e5b54d4..8141f221274c 100644 --- a/src/msg/async/AsyncConnection.cc +++ b/src/msg/async/AsyncConnection.cc @@ -1535,8 +1535,8 @@ ssize_t AsyncConnection::handle_connect_msg(ceph_msg_connect &connect, bufferlis lock.lock(); char tag; if (need_challenge && !had_challenge && authorizer_challenge) { - ldout(async_msgr->cct,0) << __func__ << ": challenging authorizer" - << dendl; + ldout(async_msgr->cct,10) << __func__ << ": challenging authorizer" + << dendl; ceph_assert(authorizer_reply.length()); tag = CEPH_MSGR_TAG_CHALLENGE_AUTHORIZER; } else { diff --git a/src/msg/simple/Pipe.cc b/src/msg/simple/Pipe.cc index 8005cf8947da..e356e7e662e1 100644 --- a/src/msg/simple/Pipe.cc +++ b/src/msg/simple/Pipe.cc @@ -531,9 +531,9 @@ int Pipe::accept() if (state != STATE_ACCEPTING) goto shutting_down_msgr_unlocked; if (!had_challenge && need_challenge && authorizer_challenge) { - ldout(msgr->cct,0) << "accept: challenging authorizer " - << authorizer_reply.length() - << " bytes" << dendl; + ldout(msgr->cct,10) << "accept: challenging authorizer " + << authorizer_reply.length() + << " bytes" << dendl; ceph_assert(authorizer_reply.length()); reply.tag = CEPH_MSGR_TAG_CHALLENGE_AUTHORIZER; } else {