From ac17e667665f7219751b15c80aaed14674b2558c Mon Sep 17 00:00:00 2001 From: Wei Jin Date: Wed, 23 Mar 2016 16:12:38 +0800 Subject: [PATCH] osd: fix log info Signed-off-by: Wei Jin --- src/osd/OSD.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.47.3