Skip to content
Open
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
7 changes: 7 additions & 0 deletions cardano-node/src/Cardano/Node/Tracing/Tracers/NodeToNode.hs
Original file line number Diff line number Diff line change
Expand Up @@ -500,6 +500,11 @@ instance LogFormatting (AnyMessage (LN.LeiosNotify LeiosPoint ())) where
, "ebHash" .= ebHash
]

LN.MsgLeiosVotes votes ->
mconcat [ "kind" .= String "MsgLeiosVotes"
, "votes" .= votes
]

LN.MsgDone ->
mconcat [ "kind" .= String "MsgDone"
]
Expand All @@ -516,6 +521,7 @@ instance MetaTrace (AnyMessage (LN.LeiosNotify LeiosPoint ())) where
LN.MsgLeiosBlockAnnouncement {} -> Namespace [] ["BlockAnnouncement"]
LN.MsgLeiosBlockOffer {} -> Namespace [] ["BlockOffer"]
LN.MsgLeiosBlockTxsOffer {} -> Namespace [] ["BlockTxsOffer"]
LN.MsgLeiosVotes {} -> Namespace [] ["Votes"]
LN.MsgDone -> Namespace [] ["Done"]

severityFor _ _ = Just Debug
Expand All @@ -527,6 +533,7 @@ instance MetaTrace (AnyMessage (LN.LeiosNotify LeiosPoint ())) where
, Namespace [] ["BlockAnnouncement"]
, Namespace [] ["BlockOffer"]
, Namespace [] ["BlockTxsOffer"]
, Namespace [] ["Votes"]
, Namespace [] ["Done"]
]

Expand Down
Loading