Merge pull request #23 from maticnetwork/dev-fix-log

Remove unwanted log
This commit is contained in:
Jaynti Kanani 2020-03-06 16:04:45 +05:30 committed by GitHub
commit e3f1e51ae6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 for next Heimdall span", u.Path)
log.Info("Retrying again in 5 seconds for next Heimdall span", "path", u.Path)
time.Sleep(5 * time.Second)
}
}