Skip to content
Snippets Groups Projects
Commit aaa7fcb5 authored by Michael Eischer's avatar Michael Eischer
Browse files

Add more debug info on diverging replies

parent 32ba8072
No related branches found
No related tags found
No related merge requests found
......@@ -98,7 +98,7 @@ public class REFITReplyCertificate {
private void checkResult() {
if (isStable()) return;
if (REFITConfig.ENABLE_DEBUG_CHECKS && isTotalOrder && replies.votesDiffer())
REFITLogger.logWarning("[REPLY]", "received different results for request " + uid);
REFITLogger.logWarning("[REPLY]", "received different results for request " + uid + " " + replies);
List<REFITReplyBase> correctReplies = replies.getDecidingBallots();
if (correctReplies == null) return;
for (REFITReplyBase reply : correctReplies) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment