Skip to content
Snippets Groups Projects
Commit 28625869 authored by Irene Y Zhang's avatar Irene Y Zhang
Browse files

switching some Notice to Debug

parent 90d55b5e
No related branches found
No related tags found
No related merge requests found
......@@ -215,7 +215,7 @@ IRClient::ConsensusSlowPath()
return;
}
Notice("Client timeout; taking consensus slow path: %lu", pendingConsensusRequest->clientReqId);
Debug("Client timeout; taking consensus slow path: %lu", pendingConsensusRequest->clientReqId);
// get results so far
viewstamp_t vs = { view, pendingConsensusRequest->clientReqId };
......@@ -310,7 +310,7 @@ IRClient::HandleInconsistentReply(const TransportAddress &remote,
}
Notice("Client received reply: %lu %i", pendingInconsistentRequest->clientReqId, inconsistentReplyQuorum.NumRequired());
Debug("Client received reply: %lu %i", pendingInconsistentRequest->clientReqId, inconsistentReplyQuorum.NumRequired());
// Record replies
viewstamp_t vs = { msg.view(), msg.opid().clientreqid() };
......@@ -351,7 +351,7 @@ IRClient::HandleConsensusReply(const TransportAddress &remote,
}
Notice("Client received reply: %lu %i", pendingConsensusRequest->clientReqId, consensusReplyQuorum.NumRequired());
Debug("Client received reply: %lu %i", pendingConsensusRequest->clientReqId, consensusReplyQuorum.NumRequired());
// Record replies
viewstamp_t vs = { msg.view(), msg.opid().clientreqid() };
......@@ -433,7 +433,7 @@ IRClient::HandleUnloggedReply(const TransportAddress &remote,
return;
}
Notice("Client received unloggedReply");
Debug("Client received unloggedReply");
unloggedRequestTimeout->Stop();
......
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