From: Sage Weil Date: Thu, 22 Sep 2016 18:57:08 +0000 (-0400) Subject: msg/async: no need for ..."started." suffix X-Git-Tag: v11.0.1~114^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=71aa8237ee21b70316a26e80b66ee6fefe7ac232;p=ceph.git msg/async: no need for ..."started." suffix Signed-off-by: Sage Weil --- diff --git a/src/msg/async/AsyncConnection.cc b/src/msg/async/AsyncConnection.cc index 005ae0e2115..73ef39fd921 100644 --- a/src/msg/async/AsyncConnection.cc +++ b/src/msg/async/AsyncConnection.cc @@ -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 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 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();