diff --git a/tests/simulation/raft.cpp b/tests/simulation/raft.cpp index 95a00183f..590e353b0 100644 --- a/tests/simulation/raft.cpp +++ b/tests/simulation/raft.cpp @@ -224,7 +224,6 @@ class Server { if (state_.log.empty() || state_.committed_log_size == 0) { return 0; } else { - Log("log len: ", state_.log.size(), " committed_log_size: ", state_.committed_log_size); auto &[term, data] = state_.log.at(state_.committed_log_size - 1); return term; }