From d3cc7fdc77e014e1f5d8ae98be1d31db19783606 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CGheisMohammadi=E2=80=9D?= <36589218+GheisMohammadi@users.noreply.github.com> Date: Mon, 12 Feb 2024 18:41:45 +0800 Subject: [PATCH] set debug to info for logging the pending crosslinks --- node/node.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/node/node.go b/node/node.go index 3abf55334..05aca8502 100644 --- a/node/node.go +++ b/node/node.go @@ -1187,13 +1187,13 @@ func New( allPending, err := node.Blockchain().ReadPendingCrossLinks() if err == nil { for _, pending := range allPending { - utils.Logger().Debug(). + utils.Logger().Info(). Uint32("shard", pending.ShardID()). Int64("epoch", pending.Epoch().Int64()). Uint64("blockNum", pending.BlockNum()). Int64("viewID", pending.ViewID().Int64()). Interface("hash", pending.Hash()). - Msg("pending cross link") + Msg("[PendingCrossLinksOnInit] pending cross links") } } else { utils.Logger().Debug().