Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions cardano-node/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Next version

- Lower the log severity from Error to Info for PeerStatusChangeFailure, PeerMonitoringError and AcquireConnectionError.

* Removed `cardano-node' as a dependency from `cardano-tracer'. This necessitated moving `NodeInfo`
(from `cardano-tracer:Cardano.Node.Startup` to `trace-dispatcher:Cardano.Logging.Types.NodeInfo`), `NodePeers`
(from `cardano-node:Cardano.Node.Tracing.Peers` to `trace-dispatcher:Cardano.Logging.Types.NodePeers`), and
Expand Down
6 changes: 3 additions & 3 deletions cardano-node/src/Cardano/Tracing/OrphanInstances/Network.hs
Original file line number Diff line number Diff line change
Expand Up @@ -523,10 +523,10 @@ instance HasSeverityAnnotation (PeerSelectionActionsTrace SockAddr lAddr) where
getSeverityAnnotation ev =
case ev of
PeerStatusChanged {} -> Info
PeerStatusChangeFailure {} -> Error
PeerMonitoringError {} -> Error
PeerStatusChangeFailure {} -> Info
PeerMonitoringError {} -> Info
PeerMonitoringResult {} -> Debug
AcquireConnectionError {} -> Error
AcquireConnectionError {} -> Info

instance HasPrivacyAnnotation (PeerSelectionCounters extraCounters)
instance HasSeverityAnnotation (PeerSelectionCounters extraCounters) where
Expand Down
Loading