From a76863980d74bca0290c63c1b388f1da3d7874ec Mon Sep 17 00:00:00 2001 From: jingwei zhuang Date: Wed, 17 Jan 2024 16:02:24 -0800 Subject: [PATCH] print debug log --- fetcher/fetcher.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/fetcher/fetcher.go b/fetcher/fetcher.go index b1e304dfe..3c5339865 100644 --- a/fetcher/fetcher.go +++ b/fetcher/fetcher.go @@ -132,6 +132,9 @@ func New( // Initialize the connection semaphore f.connectionSemaphore = semaphore.NewWeighted(int64(f.maxConnections)) + fmt.Printf("the max retries number in rosetta-sdk-go fetcher is %v\n", f.maxRetries) + fmt.Printf("the forceretry in rosetta-sdk-go fetcher is %v\n", f.forceRetry) + return f }