From 71aa8237ee21b70316a26e80b66ee6fefe7ac232 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Thu, 22 Sep 2016 14:57:08 -0400 Subject: [PATCH] msg/async: no need for ..."started." suffix Signed-off-by: Sage Weil --- src/msg/async/AsyncConnection.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/msg/async/AsyncConnection.cc b/src/msg/async/AsyncConnection.cc index 005ae0e2115fd..73ef39fd921f4 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(); -- 2.39.5