]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
msg: lower verbosity on normal event 23890/head
authorPatrick Donnelly <pdonnell@redhat.com>
Sun, 2 Sep 2018 19:51:46 +0000 (12:51 -0700)
committerPatrick Donnelly <pdonnell@redhat.com>
Tue, 4 Sep 2018 19:35:24 +0000 (12:35 -0700)
Fixes: http://tracker.ceph.com/issues/35251
Signed-off-by: Patrick Donnelly <pdonnell@redhat.com>
src/msg/async/AsyncConnection.cc
src/msg/simple/Pipe.cc

index 15027e5b54d4d81458cd3f6f0d975fd990152a3c..8141f221274cb06490ed45fd0b2b79cfe9af11db 100644 (file)
@@ -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 {
index 8005cf8947da473d5cfc7397dc11f3d41f375400..e356e7e662e1a1591124945f6c08facf310d86e5 100644 (file)
@@ -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 {