]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
test/ceph_test_msgr: better looking log 10612/head
authorKefu Chai <kchai@redhat.com>
Mon, 8 Aug 2016 15:35:08 +0000 (23:35 +0800)
committerKefu Chai <kchai@redhat.com>
Mon, 8 Aug 2016 16:12:11 +0000 (00:12 +0800)
Signed-off-by: Kefu Chai <kchai@redhat.com>
src/test/msgr/test_msgr.cc

index 9e71ba612466fc513f3ff61c1fd209b16e6e8206..f7bf0811c6b0aa129e8dd227c64d5ece39bb0596 100644 (file)
@@ -114,7 +114,7 @@ class FakeDispatcher : public Dispatcher {
 
   void ms_handle_fast_connect(Connection *con) {
     lock.Lock();
-    lderr(g_ceph_context) << __func__ << con << dendl;
+    lderr(g_ceph_context) << __func__ << " " << con << dendl;
     Session *s = static_cast<Session*>(con->get_priv());
     if (!s) {
       s = new Session(con);
@@ -154,7 +154,7 @@ class FakeDispatcher : public Dispatcher {
   }
   bool ms_handle_reset(Connection *con) {
     Mutex::Locker l(lock);
-    lderr(g_ceph_context) << __func__ << con << dendl;
+    lderr(g_ceph_context) << __func__ << " " << con << dendl;
     Session *s = static_cast<Session*>(con->get_priv());
     if (s) {
       s->con.reset(NULL);  // break con <-> session ref cycle
@@ -165,7 +165,7 @@ class FakeDispatcher : public Dispatcher {
   }
   void ms_handle_remote_reset(Connection *con) {
     Mutex::Locker l(lock);
-    lderr(g_ceph_context) << __func__ << con << dendl;
+    lderr(g_ceph_context) << __func__ << " " << con << dendl;
     Session *s = static_cast<Session*>(con->get_priv());
     if (s) {
       s->con.reset(NULL);  // break con <-> session ref cycle
@@ -1344,7 +1344,7 @@ class MarkdownDispatcher : public Dispatcher {
   }
 
   void ms_handle_fast_connect(Connection *con) {
-    lderr(g_ceph_context) << __func__ << con << dendl;
+    lderr(g_ceph_context) << __func__ << " " << con << dendl;
     Mutex::Locker l(lock);
     conns.insert(con);
   }
@@ -1377,7 +1377,7 @@ class MarkdownDispatcher : public Dispatcher {
     return true;
   }
   bool ms_handle_reset(Connection *con) {
-    lderr(g_ceph_context) << __func__ << con << dendl;
+    lderr(g_ceph_context) << __func__ << " " << con << dendl;
     Mutex::Locker l(lock);
     conns.erase(con);
     usleep(rand() % 500);
@@ -1386,7 +1386,7 @@ class MarkdownDispatcher : public Dispatcher {
   void ms_handle_remote_reset(Connection *con) {
     Mutex::Locker l(lock);
     conns.erase(con);
-    lderr(g_ceph_context) << __func__ << con << dendl;
+    lderr(g_ceph_context) << __func__ << " " << con << dendl;
   }
   void ms_fast_dispatch(Message *m) {
     assert(0);