From dc53adfbee36225c7d28e8a8d3ee43f8d583c504 Mon Sep 17 00:00:00 2001 From: Kostas Christidis Date: Fri, 19 Aug 2016 19:04:07 -0400 Subject: [PATCH] Change out of sequence numbers message to warning Change-Id: Ia11c7ace7a710986dd87059ef5affb897200aa2a Signed-off-by: Kostas Christidis --- consensus/pbft/pbft-core.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/consensus/pbft/pbft-core.go b/consensus/pbft/pbft-core.go index 0a9405896ae..48fde18a54f 100644 --- a/consensus/pbft/pbft-core.go +++ b/consensus/pbft/pbft-core.go @@ -635,7 +635,8 @@ func (instance *pbftCore) sendPrePrepare(reqBatch *RequestBatch, digest string) } if !instance.inWV(instance.view, n) || n > instance.h+instance.L/2 { - logger.Debugf("Replica %d is primary, not sending pre-prepare for request batch %s because it is out of sequence numbers", instance.id, digest) + // We don't have the necessary stable certificates to advance our watermarks + logger.Warningf("Primary %d not sending pre-prepare for batch %s - out of sequence numbers", instance.id, digest) return }