Skip to content

Commit

Permalink
Merge pull request #98 from orbs-network/reduce-logs-send
Browse files Browse the repository at this point in the history
remove recipients in broadcast
  • Loading branch information
gadcl authored Nov 16, 2020
2 parents d862a81 + b076568 commit 81dc2c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/termincommittee/term_in_committee.go
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ func (tic *TermInCommittee) sendConsensusMessage(message interfaces.ConsensusMes
tic.logger.Debug("LHMSG SEND sendConsensusMessage() target=ALL, msgType=%v", message.MessageType())
rawMessage := interfaces.CreateConsensusRawMessage(message)
err := tic.communication.SendConsensusMessage(context.TODO(), tic.otherCommitteeMemberIds, rawMessage)
tic.logger.ConsensusTrace("sent consensus message", err, log.Stringable("message-type", message.MessageType()), log.StringableSlice("recipients", tic.otherCommitteeMemberIds))
tic.logger.ConsensusTrace("sent consensus message to all other members", err, log.Stringable("message-type", message.MessageType()))
return err
}

Expand Down

0 comments on commit 81dc2c0

Please sign in to comment.