Skip to content

Commit

Permalink
Merge pull request naver#239 from uhm0311/uhm0311/rgroup_log_newline
Browse files Browse the repository at this point in the history
CLEANUP: Remove double newline
  • Loading branch information
jhpark816 committed Mar 7, 2022
2 parents 5a8d017 + 00beddc commit feb9418
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libmemcached/memcached.cc
Original file line number Diff line number Diff line change
Expand Up @@ -561,9 +561,9 @@ do_memcached_update_rgrouplist(memcached_st *mc,
return run_distribution(mc);
}

ZOO_LOG_INFO(("__do_arcus_update_grouplist: count=%u\n", servercount));
ZOO_LOG_INFO(("__do_arcus_update_grouplist: count=%u", servercount));
for (x= 0; x < servercount; x++) {
ZOO_LOG_INFO(("server[%u] groupname=%s %s hostname=%s port=%u\n",
ZOO_LOG_INFO(("server[%u] groupname=%s %s hostname=%s port=%u",
x, serverinfo[x].groupname,
serverinfo[x].master ? "master" : "slave",
serverinfo[x].hostname,
Expand Down

0 comments on commit feb9418

Please sign in to comment.