some comments

This commit is contained in:
Ethan Buchman
2016-08-09 20:06:19 -04:00
parent cdfbf05e8c
commit c90bde3187
3 changed files with 18 additions and 2 deletions

View File

@ -432,7 +432,7 @@ func (cs *ConsensusState) sendInternalMessage(mi msgInfo) {
// be processed out of order.
// TODO: use CList here for strict determinism and
// attempt push to internalMsgQueue in receiveRoutine
log.Debug("Internal msg queue is full. Using a go-routine")
log.Warn("Internal msg queue is full. Using a go-routine")
go func() { cs.internalMsgQueue <- mi }()
}
}