Skip to content

Commit

Permalink
fix: treat coordinator missing as a warn log (#352)
Browse files Browse the repository at this point in the history
  • Loading branch information
mpetrun5 authored Aug 28, 2024
1 parent 09039b5 commit 25c41f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tss/coordinator.go
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ func (c *Coordinator) handleError(ctx context.Context, err error, tssProcesses [
switch err := err.(type) {
case *CoordinatorError:
{
log.Err(err).Str("SessionID", sessionID).Msgf("Tss process failed with error %+v", err)
log.Warn().Str("SessionID", sessionID).Msgf("Tss process failed with error %+v", err)

excludedPeers := []peer.ID{err.Peer}
rp.Go(func(ctx context.Context) error { return c.retry(ctx, tssProcesses, resultChn, excludedPeers) })
Expand Down

0 comments on commit 25c41f5

Please sign in to comment.