Skip to content

Commit 1d9ec4a

Browse files
committed
lower severity for ResponderStartFailure to Info
1 parent 77b69d8 commit 1d9ec4a

File tree

2 files changed

+2
-2
lines changed
  • cardano-node/src/Cardano

2 files changed

+2
-2
lines changed

cardano-node/src/Cardano/Node/Tracing/Tracers/P2P.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1760,7 +1760,7 @@ instance MetaTrace (InboundGovernor.Trace addr) where
17601760

17611761
severityFor (Namespace _ ["NewConnection"]) _ = Just Debug
17621762
severityFor (Namespace _ ["ResponderRestarted"]) _ = Just Debug
1763-
severityFor (Namespace _ ["ResponderStartFailure"]) _ = Just Error
1763+
severityFor (Namespace _ ["ResponderStartFailure"]) _ = Just Info
17641764
severityFor (Namespace _ ["ResponderErrored"]) _ = Just Info
17651765
severityFor (Namespace _ ["ResponderStarted"]) _ = Just Debug
17661766
severityFor (Namespace _ ["ResponderTerminated"]) _ = Just Debug

cardano-node/src/Cardano/Tracing/OrphanInstances/Network.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -586,7 +586,7 @@ instance HasSeverityAnnotation (InboundGovernor.Trace addr) where
586586
case ev of
587587
InboundGovernor.TrNewConnection {} -> Debug
588588
InboundGovernor.TrResponderRestarted {} -> Debug
589-
InboundGovernor.TrResponderStartFailure {} -> Error
589+
InboundGovernor.TrResponderStartFailure {} -> Info
590590
InboundGovernor.TrResponderErrored {} -> Info
591591
InboundGovernor.TrResponderStarted {} -> Debug
592592
InboundGovernor.TrResponderTerminated {} -> Debug

0 commit comments

Comments
 (0)