Skip to content

Commit 69b4ee6

Browse files
authored
Merge pull request #6 from sei-protocol/tony-chen-logs
Add more info logging
2 parents 0dc2ec9 + 0c3055c commit 69b4ee6

File tree

2 files changed

+40
-31
lines changed

2 files changed

+40
-31
lines changed

internal/consensus/state.go

+39-31
Original file line numberDiff line numberDiff line change
@@ -1484,9 +1484,10 @@ func (cs *State) enterPrevote(ctx context.Context, height int64, round int32) {
14841484
logger := cs.logger.With("height", height, "round", round)
14851485

14861486
if cs.Height != height || round < cs.Round || (cs.Round == round && cstypes.RoundStepPrevote <= cs.Step) {
1487-
logger.Debug(
1487+
logger.Info(
14881488
"entering prevote step with invalid args",
14891489
"current", fmt.Sprintf("%v/%v/%v", cs.Height, cs.Round, cs.Step),
1490+
"time", time.Now().UnixMilli(),
14901491
)
14911492
return
14921493
}
@@ -1497,7 +1498,7 @@ func (cs *State) enterPrevote(ctx context.Context, height int64, round int32) {
14971498
cs.newStep()
14981499
}()
14991500

1500-
logger.Debug("entering prevote step", "current", fmt.Sprintf("%v/%v/%v", cs.Height, cs.Round, cs.Step))
1501+
logger.Info("entering prevote step", "current", fmt.Sprintf("%v/%v/%v", cs.Height, cs.Round, cs.Step), "time", time.Now().UnixMilli())
15011502

15021503
// Sign and broadcast vote as necessary
15031504
cs.doPrevote(ctx, height, round)
@@ -1516,26 +1517,26 @@ func (cs *State) defaultDoPrevote(ctx context.Context, height int64, round int32
15161517

15171518
// Check that a proposed block was not received within this round (and thus executing this from a timeout).
15181519
if cs.ProposalBlock == nil {
1519-
logger.Debug("prevote step: ProposalBlock is nil; prevoting nil")
1520+
logger.Info("prevote step: ProposalBlock is nil; prevoting nil")
15201521
cs.signAddVote(ctx, tmproto.PrevoteType, nil, types.PartSetHeader{})
15211522
return
15221523
}
15231524

15241525
if cs.Proposal == nil {
1525-
logger.Debug("prevote step: did not receive proposal; prevoting nil")
1526+
logger.Info("prevote step: did not receive proposal; prevoting nil")
15261527
cs.signAddVote(ctx, tmproto.PrevoteType, nil, types.PartSetHeader{})
15271528
return
15281529
}
15291530

15301531
if !cs.Proposal.Timestamp.Equal(cs.ProposalBlock.Header.Time) {
1531-
logger.Debug("prevote step: proposal timestamp not equal; prevoting nil")
1532+
logger.Info("prevote step: proposal timestamp not equal; prevoting nil")
15321533
cs.signAddVote(ctx, tmproto.PrevoteType, nil, types.PartSetHeader{})
15331534
return
15341535
}
15351536

15361537
sp := cs.state.ConsensusParams.Synchrony.SynchronyParamsOrDefaults()
15371538
if cs.Proposal.POLRound == -1 && cs.LockedRound == -1 && !cs.proposalIsTimely() {
1538-
logger.Debug("prevote step: Proposal is not timely; prevoting nil",
1539+
logger.Info("prevote step: Proposal is not timely; prevoting nil",
15391540
"proposed",
15401541
tmtime.Canonical(cs.Proposal.Timestamp).Format(time.RFC3339Nano),
15411542
"received",
@@ -1597,12 +1598,12 @@ func (cs *State) defaultDoPrevote(ctx context.Context, height int64, round int32
15971598
*/
15981599
if cs.Proposal.POLRound == -1 {
15991600
if cs.LockedRound == -1 {
1600-
logger.Debug("prevote step: ProposalBlock is valid and there is no locked block; prevoting the proposal")
1601+
logger.Info("prevote step: ProposalBlock is valid and there is no locked block; prevoting the proposal")
16011602
cs.signAddVote(ctx, tmproto.PrevoteType, cs.ProposalBlock.Hash(), cs.ProposalBlockParts.Header())
16021603
return
16031604
}
16041605
if cs.ProposalBlock.HashesTo(cs.LockedBlock.Hash()) {
1605-
logger.Debug("prevote step: ProposalBlock is valid and matches our locked block; prevoting the proposal")
1606+
logger.Info("prevote step: ProposalBlock is valid and matches our locked block; prevoting the proposal")
16061607
cs.signAddVote(ctx, tmproto.PrevoteType, cs.ProposalBlock.Hash(), cs.ProposalBlockParts.Header())
16071608
return
16081609
}
@@ -1628,19 +1629,19 @@ func (cs *State) defaultDoPrevote(ctx context.Context, height int64, round int32
16281629
blockID, ok := cs.Votes.Prevotes(cs.Proposal.POLRound).TwoThirdsMajority()
16291630
if ok && cs.ProposalBlock.HashesTo(blockID.Hash) && cs.Proposal.POLRound >= 0 && cs.Proposal.POLRound < cs.Round {
16301631
if cs.LockedRound <= cs.Proposal.POLRound {
1631-
logger.Debug("prevote step: ProposalBlock is valid and received a 2/3" +
1632+
logger.Info("prevote step: ProposalBlock is valid and received a 2/3" +
16321633
"majority in a round later than the locked round; prevoting the proposal")
16331634
cs.signAddVote(ctx, tmproto.PrevoteType, cs.ProposalBlock.Hash(), cs.ProposalBlockParts.Header())
16341635
return
16351636
}
16361637
if cs.ProposalBlock.HashesTo(cs.LockedBlock.Hash()) {
1637-
logger.Debug("prevote step: ProposalBlock is valid and matches our locked block; prevoting the proposal")
1638+
logger.Info("prevote step: ProposalBlock is valid and matches our locked block; prevoting the proposal")
16381639
cs.signAddVote(ctx, tmproto.PrevoteType, cs.ProposalBlock.Hash(), cs.ProposalBlockParts.Header())
16391640
return
16401641
}
16411642
}
16421643

1643-
logger.Debug("prevote step: ProposalBlock is valid but was not our locked block or " +
1644+
logger.Info("prevote step: ProposalBlock is valid but was not our locked block or " +
16441645
"did not receive a more recent majority; prevoting nil")
16451646
cs.signAddVote(ctx, tmproto.PrevoteType, nil, types.PartSetHeader{})
16461647
}
@@ -1650,9 +1651,10 @@ func (cs *State) enterPrevoteWait(height int64, round int32) {
16501651
logger := cs.logger.With("height", height, "round", round)
16511652

16521653
if cs.Height != height || round < cs.Round || (cs.Round == round && cstypes.RoundStepPrevoteWait <= cs.Step) {
1653-
logger.Debug(
1654+
logger.Info(
16541655
"entering prevote wait step with invalid args",
16551656
"current", fmt.Sprintf("%v/%v/%v", cs.Height, cs.Round, cs.Step),
1657+
"time", time.Now().UnixMilli(),
16561658
)
16571659
return
16581660
}
@@ -1664,7 +1666,7 @@ func (cs *State) enterPrevoteWait(height int64, round int32) {
16641666
))
16651667
}
16661668

1667-
logger.Debug("entering prevote wait step", "current", fmt.Sprintf("%v/%v/%v", cs.Height, cs.Round, cs.Step))
1669+
logger.Info("entering prevote wait step", "current", fmt.Sprintf("%v/%v/%v", cs.Height, cs.Round, cs.Step), "time", time.Now().UnixMilli())
16681670

16691671
defer func() {
16701672
// Done enterPrevoteWait:
@@ -1685,14 +1687,15 @@ func (cs *State) enterPrecommit(ctx context.Context, height int64, round int32)
16851687
logger := cs.logger.With("height", height, "round", round)
16861688

16871689
if cs.Height != height || round < cs.Round || (cs.Round == round && cstypes.RoundStepPrecommit <= cs.Step) {
1688-
logger.Debug(
1690+
logger.Info(
16891691
"entering precommit step with invalid args",
16901692
"current", fmt.Sprintf("%v/%v/%v", cs.Height, cs.Round, cs.Step),
1693+
"time", time.Now().UnixMilli(),
16911694
)
16921695
return
16931696
}
16941697

1695-
logger.Debug("entering precommit step", "current", fmt.Sprintf("%v/%v/%v", cs.Height, cs.Round, cs.Step))
1698+
logger.Info("entering precommit step", "current", fmt.Sprintf("%v/%v/%v", cs.Height, cs.Round, cs.Step), "time", time.Now().UnixMilli())
16961699

16971700
defer func() {
16981701
// Done enterPrecommit:
@@ -1706,9 +1709,9 @@ func (cs *State) enterPrecommit(ctx context.Context, height int64, round int32)
17061709
// If we don't have a polka, we must precommit nil.
17071710
if !ok {
17081711
if cs.LockedBlock != nil {
1709-
logger.Debug("precommit step; no +2/3 prevotes during enterPrecommit while we are locked; precommitting nil")
1712+
logger.Info("precommit step; no +2/3 prevotes during enterPrecommit while we are locked; precommitting nil")
17101713
} else {
1711-
logger.Debug("precommit step; no +2/3 prevotes during enterPrecommit; precommitting nil")
1714+
logger.Info("precommit step; no +2/3 prevotes during enterPrecommit; precommitting nil")
17121715
}
17131716

17141717
cs.signAddVote(ctx, tmproto.PrecommitType, nil, types.PartSetHeader{})
@@ -1728,29 +1731,29 @@ func (cs *State) enterPrecommit(ctx context.Context, height int64, round int32)
17281731

17291732
// +2/3 prevoted nil. Precommit nil.
17301733
if blockID.IsNil() {
1731-
logger.Debug("precommit step: +2/3 prevoted for nil; precommitting nil")
1734+
logger.Info("precommit step: +2/3 prevoted for nil; precommitting nil")
17321735
cs.signAddVote(ctx, tmproto.PrecommitType, nil, types.PartSetHeader{})
17331736
return
17341737
}
17351738
// At this point, +2/3 prevoted for a particular block.
17361739

17371740
// If we never received a proposal for this block, we must precommit nil
17381741
if cs.Proposal == nil || cs.ProposalBlock == nil {
1739-
logger.Debug("precommit step; did not receive proposal, precommitting nil")
1742+
logger.Info("precommit step; did not receive proposal, precommitting nil")
17401743
cs.signAddVote(ctx, tmproto.PrecommitType, nil, types.PartSetHeader{})
17411744
return
17421745
}
17431746

17441747
// If the proposal time does not match the block time, precommit nil.
17451748
if !cs.Proposal.Timestamp.Equal(cs.ProposalBlock.Header.Time) {
1746-
logger.Debug("precommit step: proposal timestamp not equal; precommitting nil")
1749+
logger.Info("precommit step: proposal timestamp not equal; precommitting nil")
17471750
cs.signAddVote(ctx, tmproto.PrecommitType, nil, types.PartSetHeader{})
17481751
return
17491752
}
17501753

17511754
// If we're already locked on that block, precommit it, and update the LockedRound
17521755
if cs.LockedBlock.HashesTo(blockID.Hash) {
1753-
logger.Debug("precommit step: +2/3 prevoted locked block; relocking")
1756+
logger.Info("precommit step: +2/3 prevoted locked block; relocking")
17541757
cs.LockedRound = round
17551758

17561759
if err := cs.eventBus.PublishEventRelock(cs.RoundStateEvent()); err != nil {
@@ -1765,7 +1768,7 @@ func (cs *State) enterPrecommit(ctx context.Context, height int64, round int32)
17651768
// the proposed block, update our locked block to this block and issue a
17661769
// precommit vote for it.
17671770
if cs.ProposalBlock.HashesTo(blockID.Hash) {
1768-
logger.Debug("precommit step: +2/3 prevoted proposal block; locking", "hash", blockID.Hash)
1771+
logger.Info("precommit step: +2/3 prevoted proposal block; locking", "hash", blockID.Hash)
17691772

17701773
// Validate the block.
17711774
if err := cs.blockExec.ValidateBlock(ctx, cs.state, cs.ProposalBlock); err != nil {
@@ -1786,7 +1789,7 @@ func (cs *State) enterPrecommit(ctx context.Context, height int64, round int32)
17861789

17871790
// There was a polka in this round for a block we don't have.
17881791
// Fetch that block, and precommit nil.
1789-
logger.Debug("precommit step: +2/3 prevotes for a block we do not have; voting nil", "block_id", blockID)
1792+
logger.Info("precommit step: +2/3 prevotes for a block we do not have; voting nil", "block_id", blockID)
17901793

17911794
if !cs.ProposalBlockParts.HasHeader(blockID.PartSetHeader) {
17921795
cs.ProposalBlock = nil
@@ -1802,10 +1805,11 @@ func (cs *State) enterPrecommitWait(height int64, round int32) {
18021805
logger := cs.logger.With("height", height, "round", round)
18031806

18041807
if cs.Height != height || round < cs.Round || (cs.Round == round && cs.TriggeredTimeoutPrecommit) {
1805-
logger.Debug(
1808+
logger.Info(
18061809
"entering precommit wait step with invalid args",
18071810
"triggered_timeout", cs.TriggeredTimeoutPrecommit,
18081811
"current", fmt.Sprintf("%v/%v", cs.Height, cs.Round),
1812+
"time", time.Now().UnixMilli(),
18091813
)
18101814
return
18111815
}
@@ -1817,7 +1821,7 @@ func (cs *State) enterPrecommitWait(height int64, round int32) {
18171821
))
18181822
}
18191823

1820-
logger.Debug("entering precommit wait step", "current", fmt.Sprintf("%v/%v/%v", cs.Height, cs.Round, cs.Step))
1824+
logger.Info("entering precommit wait step", "current", fmt.Sprintf("%v/%v/%v", cs.Height, cs.Round, cs.Step), "time", time.Now().UnixMilli())
18211825

18221826
defer func() {
18231827
// Done enterPrecommitWait:
@@ -1834,14 +1838,15 @@ func (cs *State) enterCommit(ctx context.Context, height int64, commitRound int3
18341838
logger := cs.logger.With("height", height, "commit_round", commitRound)
18351839

18361840
if cs.Height != height || cstypes.RoundStepCommit <= cs.Step {
1837-
logger.Debug(
1841+
logger.Info(
18381842
"entering commit step with invalid args",
18391843
"current", fmt.Sprintf("%v/%v/%v", cs.Height, cs.Round, cs.Step),
1844+
"time", time.Now().UnixMilli(),
18401845
)
18411846
return
18421847
}
18431848

1844-
logger.Debug("entering commit step", "current", fmt.Sprintf("%v/%v/%v", cs.Height, cs.Round, cs.Step))
1849+
logger.Info("entering commit step", "current", fmt.Sprintf("%v/%v/%v", cs.Height, cs.Round, cs.Step), "time", time.Now().UnixMilli())
18451850

18461851
defer func() {
18471852
// Done enterCommit:
@@ -1864,7 +1869,7 @@ func (cs *State) enterCommit(ctx context.Context, height int64, commitRound int3
18641869
// Move them over to ProposalBlock if they match the commit hash,
18651870
// otherwise they'll be cleared in updateToState.
18661871
if cs.LockedBlock.HashesTo(blockID.Hash) {
1867-
logger.Debug("commit is for a locked block; set ProposalBlock=LockedBlock", "block_hash", blockID.Hash)
1872+
logger.Info("commit is for a locked block; set ProposalBlock=LockedBlock", "block_hash", blockID.Hash)
18681873
cs.ProposalBlock = cs.LockedBlock
18691874
cs.ProposalBlockParts = cs.LockedBlockParts
18701875
}
@@ -1910,10 +1915,11 @@ func (cs *State) tryFinalizeCommit(ctx context.Context, height int64) {
19101915
if !cs.ProposalBlock.HashesTo(blockID.Hash) {
19111916
// TODO: this happens every time if we're not a validator (ugly logs)
19121917
// TODO: ^^ wait, why does it matter that we're a validator?
1913-
logger.Debug(
1918+
logger.Info(
19141919
"failed attempt to finalize commit; we do not have the commit block",
19151920
"proposal_block", cs.ProposalBlock.Hash(),
19161921
"commit_block", blockID.Hash,
1922+
"time", time.Now().UnixMilli(),
19171923
)
19181924
return
19191925
}
@@ -1926,9 +1932,10 @@ func (cs *State) finalizeCommit(ctx context.Context, height int64) {
19261932
logger := cs.logger.With("height", height)
19271933

19281934
if cs.Height != height || cs.Step != cstypes.RoundStepCommit {
1929-
logger.Debug(
1935+
logger.Info(
19301936
"entering finalize commit step",
19311937
"current", fmt.Sprintf("%v/%v/%v", cs.Height, cs.Round, cs.Step),
1938+
"time", time.Now().UnixMilli(),
19321939
)
19331940
return
19341941
}
@@ -1957,6 +1964,7 @@ func (cs *State) finalizeCommit(ctx context.Context, height int64) {
19571964
"hash", block.Hash(),
19581965
"root", block.AppHash,
19591966
"num_txs", len(block.Txs),
1967+
"time", time.Now().UnixMilli(),
19601968
)
19611969
logger.Debug(fmt.Sprintf("%v", block))
19621970

@@ -2236,7 +2244,7 @@ func (cs *State) addProposalBlockPart(
22362244
cs.ProposalBlock = block
22372245

22382246
// NOTE: it's possible to receive complete proposal blocks for future rounds without having the proposal
2239-
cs.logger.Info("received complete proposal block", "height", cs.ProposalBlock.Height, "hash", cs.ProposalBlock.Hash())
2247+
cs.logger.Info("received complete proposal block", "height", cs.ProposalBlock.Height, "hash", cs.ProposalBlock.Hash(), "time", time.Now().UnixMilli())
22402248

22412249
if err := cs.eventBus.PublishEventCompleteProposal(cs.CompleteProposalEvent()); err != nil {
22422250
cs.logger.Error("failed publishing event complete proposal", "err", err)

internal/state/execution.go

+1
Original file line numberDiff line numberDiff line change
@@ -369,6 +369,7 @@ func (blockExec *BlockExecutor) Commit(
369369
"height", block.Height,
370370
"num_txs", len(block.Txs),
371371
"block_app_hash", fmt.Sprintf("%X", block.AppHash),
372+
"time", time.Now().UnixMilli(),
372373
)
373374

374375
// Update mempool.

0 commit comments

Comments
 (0)