From: Wei Jin Date: Wed, 23 Mar 2016 08:12:38 +0000 (+0800) Subject: osd: fix log info X-Git-Tag: v10.1.1~139^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F8273%2Fhead;p=ceph.git osd: fix log info Signed-off-by: Wei Jin --- diff --git a/src/osd/OSD.cc b/src/osd/OSD.cc index 298d65df454f..d0cacc947f64 100644 --- a/src/osd/OSD.cc +++ b/src/osd/OSD.cc @@ -3949,7 +3949,7 @@ void OSD::handle_osd_ping(MOSDPing *m) if (i != heartbeat_peers.end()) { if (m->get_connection() == i->second.con_back) { dout(25) << "handle_osd_ping got reply from osd." << from - << " first_rx " << i->second.first_tx + << " first_tx " << i->second.first_tx << " last_tx " << i->second.last_tx << " last_rx_back " << i->second.last_rx_back << " -> " << m->stamp << " last_rx_front " << i->second.last_rx_front @@ -3960,7 +3960,7 @@ void OSD::handle_osd_ping(MOSDPing *m) i->second.last_rx_front = m->stamp; } else if (m->get_connection() == i->second.con_front) { dout(25) << "handle_osd_ping got reply from osd." << from - << " first_rx " << i->second.first_tx + << " first_tx " << i->second.first_tx << " last_tx " << i->second.last_tx << " last_rx_back " << i->second.last_rx_back << " last_rx_front " << i->second.last_rx_front << " -> " << m->stamp