set debug to info for logging the pending crosslinks

log/pending_crosslinks
“GheisMohammadi” 9 months ago
parent 8c05a2e1cf
commit d3cc7fdc77
No known key found for this signature in database
GPG Key ID: 15073AED3829FE90
  1. 4
      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().

Loading…
Cancel
Save