Skip to content

Commit

Permalink
Remove extra log at communicate layer
Browse files Browse the repository at this point in the history
  • Loading branch information
aminst committed Feb 19, 2024
1 parent 39abe50 commit 4e6dd76
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion pkg/rpc/communicate.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ func CallAllReplicas(ctx context.Context, clients []interface{}, replicaFuncs []
case result := <-responseChannel:
log.Debug().Msgf("Received result in CallAllReplicas %v", result)
if result.err != nil {
log.Error().Msgf("Error in CallAllReplicas %v", result.err)
errors = append(errors, result.err)
if len(errors) == len(clients) {
return nil, fmt.Errorf("could not read blocks from the replicas %v", errors)
Expand Down

0 comments on commit 4e6dd76

Please sign in to comment.