@@ -1484,9 +1484,10 @@ func (cs *State) enterPrevote(ctx context.Context, height int64, round int32) {
1484
1484
logger := cs .logger .With ("height" , height , "round" , round )
1485
1485
1486
1486
if cs .Height != height || round < cs .Round || (cs .Round == round && cstypes .RoundStepPrevote <= cs .Step ) {
1487
- logger .Debug (
1487
+ logger .Info (
1488
1488
"entering prevote step with invalid args" ,
1489
1489
"current" , fmt .Sprintf ("%v/%v/%v" , cs .Height , cs .Round , cs .Step ),
1490
+ "time" , time .Now ().UnixMilli (),
1490
1491
)
1491
1492
return
1492
1493
}
@@ -1497,7 +1498,7 @@ func (cs *State) enterPrevote(ctx context.Context, height int64, round int32) {
1497
1498
cs .newStep ()
1498
1499
}()
1499
1500
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 ( ))
1501
1502
1502
1503
// Sign and broadcast vote as necessary
1503
1504
cs .doPrevote (ctx , height , round )
@@ -1516,26 +1517,26 @@ func (cs *State) defaultDoPrevote(ctx context.Context, height int64, round int32
1516
1517
1517
1518
// Check that a proposed block was not received within this round (and thus executing this from a timeout).
1518
1519
if cs .ProposalBlock == nil {
1519
- logger .Debug ("prevote step: ProposalBlock is nil; prevoting nil" )
1520
+ logger .Info ("prevote step: ProposalBlock is nil; prevoting nil" )
1520
1521
cs .signAddVote (ctx , tmproto .PrevoteType , nil , types.PartSetHeader {})
1521
1522
return
1522
1523
}
1523
1524
1524
1525
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" )
1526
1527
cs .signAddVote (ctx , tmproto .PrevoteType , nil , types.PartSetHeader {})
1527
1528
return
1528
1529
}
1529
1530
1530
1531
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" )
1532
1533
cs .signAddVote (ctx , tmproto .PrevoteType , nil , types.PartSetHeader {})
1533
1534
return
1534
1535
}
1535
1536
1536
1537
sp := cs .state .ConsensusParams .Synchrony .SynchronyParamsOrDefaults ()
1537
1538
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" ,
1539
1540
"proposed" ,
1540
1541
tmtime .Canonical (cs .Proposal .Timestamp ).Format (time .RFC3339Nano ),
1541
1542
"received" ,
@@ -1597,12 +1598,12 @@ func (cs *State) defaultDoPrevote(ctx context.Context, height int64, round int32
1597
1598
*/
1598
1599
if cs .Proposal .POLRound == - 1 {
1599
1600
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" )
1601
1602
cs .signAddVote (ctx , tmproto .PrevoteType , cs .ProposalBlock .Hash (), cs .ProposalBlockParts .Header ())
1602
1603
return
1603
1604
}
1604
1605
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" )
1606
1607
cs .signAddVote (ctx , tmproto .PrevoteType , cs .ProposalBlock .Hash (), cs .ProposalBlockParts .Header ())
1607
1608
return
1608
1609
}
@@ -1628,19 +1629,19 @@ func (cs *State) defaultDoPrevote(ctx context.Context, height int64, round int32
1628
1629
blockID , ok := cs .Votes .Prevotes (cs .Proposal .POLRound ).TwoThirdsMajority ()
1629
1630
if ok && cs .ProposalBlock .HashesTo (blockID .Hash ) && cs .Proposal .POLRound >= 0 && cs .Proposal .POLRound < cs .Round {
1630
1631
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" +
1632
1633
"majority in a round later than the locked round; prevoting the proposal" )
1633
1634
cs .signAddVote (ctx , tmproto .PrevoteType , cs .ProposalBlock .Hash (), cs .ProposalBlockParts .Header ())
1634
1635
return
1635
1636
}
1636
1637
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" )
1638
1639
cs .signAddVote (ctx , tmproto .PrevoteType , cs .ProposalBlock .Hash (), cs .ProposalBlockParts .Header ())
1639
1640
return
1640
1641
}
1641
1642
}
1642
1643
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 " +
1644
1645
"did not receive a more recent majority; prevoting nil" )
1645
1646
cs .signAddVote (ctx , tmproto .PrevoteType , nil , types.PartSetHeader {})
1646
1647
}
@@ -1650,9 +1651,10 @@ func (cs *State) enterPrevoteWait(height int64, round int32) {
1650
1651
logger := cs .logger .With ("height" , height , "round" , round )
1651
1652
1652
1653
if cs .Height != height || round < cs .Round || (cs .Round == round && cstypes .RoundStepPrevoteWait <= cs .Step ) {
1653
- logger .Debug (
1654
+ logger .Info (
1654
1655
"entering prevote wait step with invalid args" ,
1655
1656
"current" , fmt .Sprintf ("%v/%v/%v" , cs .Height , cs .Round , cs .Step ),
1657
+ "time" , time .Now ().UnixMilli (),
1656
1658
)
1657
1659
return
1658
1660
}
@@ -1664,7 +1666,7 @@ func (cs *State) enterPrevoteWait(height int64, round int32) {
1664
1666
))
1665
1667
}
1666
1668
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 ( ))
1668
1670
1669
1671
defer func () {
1670
1672
// Done enterPrevoteWait:
@@ -1685,14 +1687,15 @@ func (cs *State) enterPrecommit(ctx context.Context, height int64, round int32)
1685
1687
logger := cs .logger .With ("height" , height , "round" , round )
1686
1688
1687
1689
if cs .Height != height || round < cs .Round || (cs .Round == round && cstypes .RoundStepPrecommit <= cs .Step ) {
1688
- logger .Debug (
1690
+ logger .Info (
1689
1691
"entering precommit step with invalid args" ,
1690
1692
"current" , fmt .Sprintf ("%v/%v/%v" , cs .Height , cs .Round , cs .Step ),
1693
+ "time" , time .Now ().UnixMilli (),
1691
1694
)
1692
1695
return
1693
1696
}
1694
1697
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 ( ))
1696
1699
1697
1700
defer func () {
1698
1701
// Done enterPrecommit:
@@ -1706,9 +1709,9 @@ func (cs *State) enterPrecommit(ctx context.Context, height int64, round int32)
1706
1709
// If we don't have a polka, we must precommit nil.
1707
1710
if ! ok {
1708
1711
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" )
1710
1713
} 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" )
1712
1715
}
1713
1716
1714
1717
cs .signAddVote (ctx , tmproto .PrecommitType , nil , types.PartSetHeader {})
@@ -1728,29 +1731,29 @@ func (cs *State) enterPrecommit(ctx context.Context, height int64, round int32)
1728
1731
1729
1732
// +2/3 prevoted nil. Precommit nil.
1730
1733
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" )
1732
1735
cs .signAddVote (ctx , tmproto .PrecommitType , nil , types.PartSetHeader {})
1733
1736
return
1734
1737
}
1735
1738
// At this point, +2/3 prevoted for a particular block.
1736
1739
1737
1740
// If we never received a proposal for this block, we must precommit nil
1738
1741
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" )
1740
1743
cs .signAddVote (ctx , tmproto .PrecommitType , nil , types.PartSetHeader {})
1741
1744
return
1742
1745
}
1743
1746
1744
1747
// If the proposal time does not match the block time, precommit nil.
1745
1748
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" )
1747
1750
cs .signAddVote (ctx , tmproto .PrecommitType , nil , types.PartSetHeader {})
1748
1751
return
1749
1752
}
1750
1753
1751
1754
// If we're already locked on that block, precommit it, and update the LockedRound
1752
1755
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" )
1754
1757
cs .LockedRound = round
1755
1758
1756
1759
if err := cs .eventBus .PublishEventRelock (cs .RoundStateEvent ()); err != nil {
@@ -1765,7 +1768,7 @@ func (cs *State) enterPrecommit(ctx context.Context, height int64, round int32)
1765
1768
// the proposed block, update our locked block to this block and issue a
1766
1769
// precommit vote for it.
1767
1770
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 )
1769
1772
1770
1773
// Validate the block.
1771
1774
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)
1786
1789
1787
1790
// There was a polka in this round for a block we don't have.
1788
1791
// 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 )
1790
1793
1791
1794
if ! cs .ProposalBlockParts .HasHeader (blockID .PartSetHeader ) {
1792
1795
cs .ProposalBlock = nil
@@ -1802,10 +1805,11 @@ func (cs *State) enterPrecommitWait(height int64, round int32) {
1802
1805
logger := cs .logger .With ("height" , height , "round" , round )
1803
1806
1804
1807
if cs .Height != height || round < cs .Round || (cs .Round == round && cs .TriggeredTimeoutPrecommit ) {
1805
- logger .Debug (
1808
+ logger .Info (
1806
1809
"entering precommit wait step with invalid args" ,
1807
1810
"triggered_timeout" , cs .TriggeredTimeoutPrecommit ,
1808
1811
"current" , fmt .Sprintf ("%v/%v" , cs .Height , cs .Round ),
1812
+ "time" , time .Now ().UnixMilli (),
1809
1813
)
1810
1814
return
1811
1815
}
@@ -1817,7 +1821,7 @@ func (cs *State) enterPrecommitWait(height int64, round int32) {
1817
1821
))
1818
1822
}
1819
1823
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 ( ))
1821
1825
1822
1826
defer func () {
1823
1827
// Done enterPrecommitWait:
@@ -1834,14 +1838,15 @@ func (cs *State) enterCommit(ctx context.Context, height int64, commitRound int3
1834
1838
logger := cs .logger .With ("height" , height , "commit_round" , commitRound )
1835
1839
1836
1840
if cs .Height != height || cstypes .RoundStepCommit <= cs .Step {
1837
- logger .Debug (
1841
+ logger .Info (
1838
1842
"entering commit step with invalid args" ,
1839
1843
"current" , fmt .Sprintf ("%v/%v/%v" , cs .Height , cs .Round , cs .Step ),
1844
+ "time" , time .Now ().UnixMilli (),
1840
1845
)
1841
1846
return
1842
1847
}
1843
1848
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 ( ))
1845
1850
1846
1851
defer func () {
1847
1852
// Done enterCommit:
@@ -1864,7 +1869,7 @@ func (cs *State) enterCommit(ctx context.Context, height int64, commitRound int3
1864
1869
// Move them over to ProposalBlock if they match the commit hash,
1865
1870
// otherwise they'll be cleared in updateToState.
1866
1871
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 )
1868
1873
cs .ProposalBlock = cs .LockedBlock
1869
1874
cs .ProposalBlockParts = cs .LockedBlockParts
1870
1875
}
@@ -1910,10 +1915,11 @@ func (cs *State) tryFinalizeCommit(ctx context.Context, height int64) {
1910
1915
if ! cs .ProposalBlock .HashesTo (blockID .Hash ) {
1911
1916
// TODO: this happens every time if we're not a validator (ugly logs)
1912
1917
// TODO: ^^ wait, why does it matter that we're a validator?
1913
- logger .Debug (
1918
+ logger .Info (
1914
1919
"failed attempt to finalize commit; we do not have the commit block" ,
1915
1920
"proposal_block" , cs .ProposalBlock .Hash (),
1916
1921
"commit_block" , blockID .Hash ,
1922
+ "time" , time .Now ().UnixMilli (),
1917
1923
)
1918
1924
return
1919
1925
}
@@ -1926,9 +1932,10 @@ func (cs *State) finalizeCommit(ctx context.Context, height int64) {
1926
1932
logger := cs .logger .With ("height" , height )
1927
1933
1928
1934
if cs .Height != height || cs .Step != cstypes .RoundStepCommit {
1929
- logger .Debug (
1935
+ logger .Info (
1930
1936
"entering finalize commit step" ,
1931
1937
"current" , fmt .Sprintf ("%v/%v/%v" , cs .Height , cs .Round , cs .Step ),
1938
+ "time" , time .Now ().UnixMilli (),
1932
1939
)
1933
1940
return
1934
1941
}
@@ -1957,6 +1964,7 @@ func (cs *State) finalizeCommit(ctx context.Context, height int64) {
1957
1964
"hash" , block .Hash (),
1958
1965
"root" , block .AppHash ,
1959
1966
"num_txs" , len (block .Txs ),
1967
+ "time" , time .Now ().UnixMilli (),
1960
1968
)
1961
1969
logger .Debug (fmt .Sprintf ("%v" , block ))
1962
1970
@@ -2236,7 +2244,7 @@ func (cs *State) addProposalBlockPart(
2236
2244
cs .ProposalBlock = block
2237
2245
2238
2246
// 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 () )
2240
2248
2241
2249
if err := cs .eventBus .PublishEventCompleteProposal (cs .CompleteProposalEvent ()); err != nil {
2242
2250
cs .logger .Error ("failed publishing event complete proposal" , "err" , err )
0 commit comments