]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
crimson/osd: verbose logging in OSD::_send_alive()
authorKefu Chai <kchai@redhat.com>
Mon, 16 Sep 2019 07:13:00 +0000 (15:13 +0800)
committerKefu Chai <kchai@redhat.com>
Mon, 16 Sep 2019 11:03:42 +0000 (19:03 +0800)
Signed-off-by: Kefu Chai <kchai@redhat.com>
src/crimson/osd/osd.cc

index 5b0e2f2df3de6aca6ff5a6b330c2ce6b9b2b105c..39369463c9f371b17e15aa050b7e9ab841ab3473 100644 (file)
@@ -374,8 +374,10 @@ seastar::future<> OSD::_send_alive()
     want,
     up_thru_wanted);
   if (!osdmap->exists(whoami)) {
+    logger().warn("{} DNE", __func__);
     return seastar::now();
-  } else if (want <= up_thru_wanted){
+  } else if (want <= up_thru_wanted) {
+    logger().debug("{} {} <= {}", __func__, want, up_thru_wanted);
     return seastar::now();
   } else {
     up_thru_wanted = want;