Skip to content

Commit

Permalink
remove redundant LOG
Browse files Browse the repository at this point in the history
  • Loading branch information
JxLi0921 committed Jan 14, 2024
1 parent 7aae603 commit 26d7cbe
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/commands/cmd_zset.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1402,7 +1402,6 @@ class CommandZRandMember : public Commander {
result_entries.reserve(member_scores.size());

for (const auto &[member, score] : member_scores) {
LOG(INFO) << "member: " << member << ", score: " << score;
result_entries.emplace_back(member);
if (with_scores_) result_entries.emplace_back(util::Float2String(score));
}
Expand Down

0 comments on commit 26d7cbe

Please sign in to comment.