From 77b034e53b4bf2d365f9f7dc02c8e051448cad13 Mon Sep 17 00:00:00 2001 From: Patrick Donnelly Date: Sun, 2 Sep 2018 12:51:46 -0700 Subject: [PATCH] msg: lower verbosity on normal event Fixes: http://tracker.ceph.com/issues/35251 Signed-off-by: Patrick Donnelly (cherry picked from commit 351831834d4f9c66395539d7015bcdb017c8dba6) Conflicts: src/msg/async/AsyncConnection.cc src/msg/simple/Pipe.cc --- src/msg/async/AsyncConnection.cc | 2 +- src/msg/simple/Pipe.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/msg/async/AsyncConnection.cc b/src/msg/async/AsyncConnection.cc index c14060c1bd321..601cabb432e66 100644 --- a/src/msg/async/AsyncConnection.cc +++ b/src/msg/async/AsyncConnection.cc @@ -1526,7 +1526,7 @@ 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" + ldout(async_msgr->cct,10) << __func__ << ": challenging authorizer" << dendl; assert(authorizer_reply.length()); tag = CEPH_MSGR_TAG_CHALLENGE_AUTHORIZER; diff --git a/src/msg/simple/Pipe.cc b/src/msg/simple/Pipe.cc index df3e51626a814..9bde7679ee423 100644 --- a/src/msg/simple/Pipe.cc +++ b/src/msg/simple/Pipe.cc @@ -531,7 +531,7 @@ 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 " + ldout(msgr->cct,10) << "accept: challenging authorizer " << authorizer_reply.length() << " bytes" << dendl; assert(authorizer_reply.length()); -- 2.39.5