Skip to content

Commit

Permalink
remove trace logs
Browse files Browse the repository at this point in the history
  • Loading branch information
nkryuchkov committed Jan 29, 2025
1 parent f8188c6 commit 5b72d6a
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions eth/executionclient/multi_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -412,8 +412,6 @@ func (mc *MultiClient) call(ctx context.Context, f func(client SingleClientProvi
continue
}

logger.Debug("calling client")

v, err := f(client)
if errors.Is(err, ErrClosed) || errors.Is(err, context.Canceled) {
logger.Debug("received graceful closure from client", zap.Error(err))
Expand All @@ -430,7 +428,6 @@ func (mc *MultiClient) call(ctx context.Context, f func(client SingleClientProvi
continue
}

logger.Debug("call succeeded")
// Update currentClientIndex to the successful client.
mc.currentClientIndex.Store(int64(clientIndex))
return v, nil
Expand Down

0 comments on commit 5b72d6a

Please sign in to comment.