From b343bd10c60645735523128b0d48ad9cd2fd868e Mon Sep 17 00:00:00 2001 From: Jaynti Kanani Date: Mon, 10 Feb 2020 19:30:09 +0530 Subject: [PATCH] fix log for retry --- consensus/bor/rest.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consensus/bor/rest.go b/consensus/bor/rest.go index c46eb2dec5..37a7b12e2d 100644 --- a/consensus/bor/rest.go +++ b/consensus/bor/rest.go @@ -65,7 +65,7 @@ func FetchFromHeimdallWithRetry(client http.Client, urlString string, paths ...s if err == nil && res != nil { return res, nil } - log.Info("Retrying again in 5 seconds", u.String()) + log.Info("Retrying again in 5 seconds for next Heimdall span", u.Path) time.Sleep(5 * time.Second) } }