]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
mon/PaxosService: include msg and con ptr in dispatch debug 6019/head
authorSage Weil <sage@redhat.com>
Mon, 21 Sep 2015 21:04:50 +0000 (17:04 -0400)
committerSage Weil <sage@redhat.com>
Mon, 21 Sep 2015 21:04:50 +0000 (17:04 -0400)
Signed-off-by: Sage Weil <sage@redhat.com>
src/mon/PaxosService.cc

index 030af78683151be232bec8a78f1e2901a85285dd..141a28be9e3b47a5330933d36676c37987e3525f 100644 (file)
@@ -40,7 +40,9 @@ bool PaxosService::dispatch(MonOpRequestRef op)
   PaxosServiceMessage *m = static_cast<PaxosServiceMessage*>(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;