File tree 3 files changed +6
-3
lines changed
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 7
7
(from ` cardano-node:Cardano.Node.Tracing.Peers ` to ` trace-dispatcher:Cardano.Logging.Types.NodePeers ` ), and
8
8
` NodeStartupInfo ` (from ` cardano-tracer:Cardano.Node.Startup ` to ` cardano-node:Cardano.Node.Tracing.NodeStartupInfo.hs ` ).
9
9
10
+ - Lower the log severity from Error to Info for TracePromoteWarmBigLedgerPeerAborted and ResponderStartFailure
11
+
10
12
- Add a new configuration field for fork-policy.
11
13
12
14
- Optionally support lightweight checkpointing.
Original file line number Diff line number Diff line change @@ -708,6 +708,7 @@ instance MetaTrace (TracePeerSelection extraDebugState extraFlags extraPeers Soc
708
708
severityFor (Namespace [] [" PromoteWarmFailed" ]) _ = Just Info
709
709
severityFor (Namespace [] [" PromoteWarmDone" ]) _ = Just Info
710
710
severityFor (Namespace [] [" PromoteWarmAborted" ]) _ = Just Info
711
+ severityFor (Namespace [] [" PromoteWarmBigLedgerPeerAborted" ]) _ = Just Info
711
712
severityFor (Namespace [] [" DemoteWarmPeers" ]) _ = Just Info
712
713
severityFor (Namespace [] [" DemoteWarmFailed" ]) _ = Just Info
713
714
severityFor (Namespace [] [" DemoteWarmDone" ]) _ = Just Info
@@ -1760,7 +1761,7 @@ instance MetaTrace (InboundGovernor.Trace addr) where
1760
1761
1761
1762
severityFor (Namespace _ [" NewConnection" ]) _ = Just Debug
1762
1763
severityFor (Namespace _ [" ResponderRestarted" ]) _ = Just Debug
1763
- severityFor (Namespace _ [" ResponderStartFailure" ]) _ = Just Error
1764
+ severityFor (Namespace _ [" ResponderStartFailure" ]) _ = Just Info
1764
1765
severityFor (Namespace _ [" ResponderErrored" ]) _ = Just Info
1765
1766
severityFor (Namespace _ [" ResponderStarted" ]) _ = Just Debug
1766
1767
severityFor (Namespace _ [" ResponderTerminated" ]) _ = Just Debug
Original file line number Diff line number Diff line change @@ -485,7 +485,7 @@ instance HasSeverityAnnotation (TracePeerSelection extraDebugState extraFlags (C
485
485
TracePromoteWarmBigLedgerPeers {} -> Info
486
486
TracePromoteWarmBigLedgerPeerFailed {} -> Error
487
487
TracePromoteWarmBigLedgerPeerDone {} -> Info
488
- TracePromoteWarmBigLedgerPeerAborted {} -> Error
488
+ TracePromoteWarmBigLedgerPeerAborted {} -> Info
489
489
490
490
TraceDemoteWarmBigLedgerPeers {} -> Info
491
491
TraceDemoteWarmBigLedgerPeerFailed {} -> Info
@@ -586,7 +586,7 @@ instance HasSeverityAnnotation (InboundGovernor.Trace addr) where
586
586
case ev of
587
587
InboundGovernor. TrNewConnection {} -> Debug
588
588
InboundGovernor. TrResponderRestarted {} -> Debug
589
- InboundGovernor. TrResponderStartFailure {} -> Error
589
+ InboundGovernor. TrResponderStartFailure {} -> Info
590
590
InboundGovernor. TrResponderErrored {} -> Info
591
591
InboundGovernor. TrResponderStarted {} -> Debug
592
592
InboundGovernor. TrResponderTerminated {} -> Debug
You can’t perform that action at this time.
0 commit comments