From c4ba3f11552c76d1ff1f8cfd880dea9e59cd9b22 Mon Sep 17 00:00:00 2001 From: Piotr Dyraga Date: Fri, 26 Aug 2022 14:09:21 +0200 Subject: [PATCH] Log on DEBUG level concurrency level for DLN verification --- ecdsa/keygen/round_2.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ecdsa/keygen/round_2.go b/ecdsa/keygen/round_2.go index b9a51c47..e72b6be2 100644 --- a/ecdsa/keygen/round_2.go +++ b/ecdsa/keygen/round_2.go @@ -11,6 +11,7 @@ import ( "errors" "sync" + "github.com/bnb-chain/tss-lib/common" "github.com/bnb-chain/tss-lib/tss" ) @@ -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