Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
Signed-off-by: Szczepan Zalega <[email protected]>
  • Loading branch information
szszszsz committed Mar 11, 2017
1 parent bb72ba6 commit 5a5205a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions device.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 5a5205a

Please sign in to comment.