From dafd1b797fb4247a7d13e4bab791929430033cae Mon Sep 17 00:00:00 2001 From: Sergey Date: Sun, 21 Apr 2024 04:54:02 +0300 Subject: [PATCH] chore: changed log verbosity --- pkg/app_manager.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/app_manager.go b/pkg/app_manager.go index b13e0c6..c1d39a2 100644 --- a/pkg/app_manager.go +++ b/pkg/app_manager.go @@ -171,7 +171,7 @@ func (a *AppManager) ProcessSnapshot(block *types.Block) { if a.SnapshotManager.HasNewerSnapshot() { if newerHeight := a.SnapshotManager.GetNewerHeight(); block.Height-newerHeight < a.Config.SnapshotsInterval { - a.Logger.Warn(). + a.Logger.Debug(). Int64("older_height", newerHeight). Int64("height", block.Height). Int64("diff", block.Height-newerHeight).