From ea4f15f92ef3ee7ff6473e99f397ae1404974573 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Mon, 4 Mar 2019 11:15:56 +0800 Subject: [PATCH] crimson/osd: more verbose logging Signed-off-by: Kefu Chai --- src/crimson/osd/osd.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/crimson/osd/osd.cc b/src/crimson/osd/osd.cc index a407f847618..67d6ac2a110 100644 --- a/src/crimson/osd/osd.cc +++ b/src/crimson/osd/osd.cc @@ -506,7 +506,8 @@ seastar::future<> OSD::handle_osd_map(ceph::net::ConnectionRef conn, const auto first = m->get_first(); const auto last = m->get_last(); - + logger().info("handle_osd_map epochs [{}..{}], i have {}, src has [{}..{}]", + first, last, superblock.newest_map, m->oldest_map, m->newest_map); // make sure there is something new, here, before we bother flushing // the queues and such if (last <= superblock.newest_map) { -- 2.39.5