From eb49431a7371c5f3df48d66e3cc322f6835fefd7 Mon Sep 17 00:00:00 2001 From: dvovk Date: Wed, 3 Jul 2024 17:40:38 +0100 Subject: [PATCH] changed log level --- erigon-lib/diagnostics/snapshots.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erigon-lib/diagnostics/snapshots.go b/erigon-lib/diagnostics/snapshots.go index f042510c6d4..f57d3e6cdf3 100644 --- a/erigon-lib/diagnostics/snapshots.go +++ b/erigon-lib/diagnostics/snapshots.go @@ -90,7 +90,7 @@ func getPercentDownloaded(downloaded, total uint64) string { func (d *DiagnosticClient) updateSnapshotStageStats(stats SyncStageStats, subStageInfo string) { idxs := d.getCurrentSyncIdxs() if idxs.Stage == -1 || idxs.SubStage == -1 { - log.Warn("[Diagnostics] Can't find running stage or substage while updating Snapshots stage stats.", "stages:", d.syncStages, "stats:", stats, "subStageInfo:", subStageInfo) + log.Debug("[Diagnostics] Can't find running stage or substage while updating Snapshots stage stats.", "stages:", d.syncStages, "stats:", stats, "subStageInfo:", subStageInfo) return }