Skip to content

Commit

Permalink
Log on DEBUG level concurrency level for DLN verification
Browse files Browse the repository at this point in the history
  • Loading branch information
pdyraga committed Aug 26, 2022
1 parent 07c7f4e commit c4ba3f1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ecdsa/keygen/round_2.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import (
"errors"
"sync"

"github.com/bnb-chain/tss-lib/common"
"github.com/bnb-chain/tss-lib/tss"
)

Expand All @@ -26,6 +27,11 @@ func (round *round2) Start() *tss.Error {
round.started = true
round.resetOK()

common.Logger.Debugf(
"%s Setting up DLN verification with concurrency level of %d",
round.PartyID(),
round.Concurrency(),
)
dlnVerifier := NewDlnProofVerifier(round.Concurrency())

i := round.PartyID().Index
Expand Down

0 comments on commit c4ba3f1

Please sign in to comment.