Skip to content

Commit

Permalink
log errors
Browse files Browse the repository at this point in the history
  • Loading branch information
evgeniy-scherbina committed Aug 2, 2024
1 parent e3008a1 commit 19d95f5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ test:

.PHONY: test-integration
test-integration:
MODE=online go test -v -tags=integration -count=1 ./testing
MODE=offline go test -v -tags=integration ./testing
MODE=online go test -v -tags=integration -count=1 ./testing
MODE=offline go test -v -tags=integration -count=1 ./testing

.PHONY: cover
cover:
Expand Down
4 changes: 4 additions & 0 deletions testing/retry_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ package testing

import (
"context"
"fmt"
"math/rand"
"regexp"
"testing"
Expand Down Expand Up @@ -62,6 +63,9 @@ func TestBlockRetry(t *testing.T) {
NetworkIdentifier: config.NetworkIdentifier,
},
)
fmt.Printf("err : %v\n", err)
fmt.Printf("rosettaErr : %v\n", rosettaErr)
fmt.Printf("networkStatus: %v\n", networkStatus)

currentBlock := networkStatus.CurrentBlockIdentifier
request := &types.BlockRequest{
Expand Down

0 comments on commit 19d95f5

Please sign in to comment.