From b2142e8d388bbd3861ea2b328f876c1978e8f042 Mon Sep 17 00:00:00 2001 From: Tyler Neely Date: Fri, 15 Jul 2022 16:20:05 +0000 Subject: [PATCH] Remove unnecessary log message --- tests/simulation/raft.cpp | 1 - 1 file changed, 1 deletion(-) 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; }