From 5a5205a0591757919a1ff4cbe31cda3b427fa19f Mon Sep 17 00:00:00 2001 From: Szczepan Zalega Date: Thu, 16 Feb 2017 21:47:57 +0100 Subject: Fix typos Signed-off-by: Szczepan Zalega --- device.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'device.cc') diff --git a/device.cc b/device.cc index dcba735..32869ae 100644 --- a/device.cc +++ b/device.cc @@ -100,10 +100,10 @@ int Device::recv(void *packet) { if (status > 0) break; // success if (retry_count++ >= m_retry_receiving_count) { Log::instance()( - "Maximum retry count reached" + std::to_string(retry_count), + "Maximum retry count reached: " + std::to_string(retry_count), Loglevel::WARNING); Log::instance()( - std::string("Counter stats") + m_counters.get_as_string(), + std::string("Counter stats: ") + m_counters.get_as_string(), Loglevel::DEBUG); break; } -- cgit v1.2.1