]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
msg/async: no need for ..."started." suffix 11205/head
authorSage Weil <sage@redhat.com>
Thu, 22 Sep 2016 18:57:08 +0000 (14:57 -0400)
committerSage Weil <sage@redhat.com>
Thu, 22 Sep 2016 18:57:08 +0000 (14:57 -0400)
Signed-off-by: Sage Weil <sage@redhat.com>
src/msg/async/AsyncConnection.cc

index 005ae0e2115fd26177daaa462706e1455dd32355..73ef39fd921f4c1c0faa39bd8375bfe18e76dc89 100644 (file)
@@ -2354,7 +2354,7 @@ void AsyncConnection::DelayedDelivery::flush() {
 
 void AsyncConnection::send_keepalive()
 {
-  ldout(async_msgr->cct, 10) << __func__ << " started." << dendl;
+  ldout(async_msgr->cct, 10) << __func__ << dendl;
   std::lock_guard<std::mutex> l(write_lock);
   if (can_write != WriteStatus::CLOSED) {
     keepalive = true;
@@ -2364,7 +2364,7 @@ void AsyncConnection::send_keepalive()
 
 void AsyncConnection::mark_down()
 {
-  ldout(async_msgr->cct, 1) << __func__ << " started." << dendl;
+  ldout(async_msgr->cct, 1) << __func__ << dendl;
   std::lock_guard<std::mutex> l(lock);
   _stop();
 }
@@ -2392,7 +2392,7 @@ void AsyncConnection::_send_keepalive_or_ack(bool ack, utime_t *tp)
 
 void AsyncConnection::handle_write()
 {
-  ldout(async_msgr->cct, 10) << __func__ << " started." << dendl;
+  ldout(async_msgr->cct, 10) << __func__ << dendl;
   ssize_t r = 0;
 
   write_lock.lock();