From: Sage Weil Date: Mon, 21 Sep 2015 21:04:50 +0000 (-0400) Subject: mon/PaxosService: include msg and con ptr in dispatch debug X-Git-Tag: v9.1.0~94^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F6019%2Fhead;p=ceph.git mon/PaxosService: include msg and con ptr in dispatch debug Signed-off-by: Sage Weil --- diff --git a/src/mon/PaxosService.cc b/src/mon/PaxosService.cc index 030af7868315..141a28be9e3b 100644 --- a/src/mon/PaxosService.cc +++ b/src/mon/PaxosService.cc @@ -40,7 +40,9 @@ bool PaxosService::dispatch(MonOpRequestRef op) PaxosServiceMessage *m = static_cast(op->get_req()); op->mark_event("psvc:dispatch"); - dout(10) << "dispatch " << *m << " from " << m->get_orig_source_inst() << dendl; + dout(10) << "dispatch " << m << " " << *m + << " from " << m->get_orig_source_inst() + << " con " << m->get_connection() << dendl; if (mon->is_shutdown()) { return true;