Skip to content

Commit

Permalink
cardano-node: fix code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
coot committed Jan 26, 2022
1 parent 2ff5767 commit 6b8f816
Showing 1 changed file with 28 additions and 24 deletions.
52 changes: 28 additions & 24 deletions cardano-node/src/Cardano/Node/Tracing/Tracers.hs
Original file line number Diff line number Diff line change
Expand Up @@ -356,33 +356,37 @@ mkNodeToClientTracers :: forall blk.
-> TraceConfig
-> IO (NodeToClient.Tracers IO (ConnectionId LocalAddress) blk DeserialiseFailure)
mkNodeToClientTracers trBase trForward mbTrEKG _trDataPoint trConfig = do
chainSyncTr <- mkCardanoTracer
trBase trForward mbTrEKG
"ChainSyncClient"
namesForTChainSync
severityTChainSync
allPublic
chainSyncTr <-
mkCardanoTracer
trBase trForward mbTrEKG
"ChainSyncClient"
namesForTChainSync
severityTChainSync
allPublic
configureTracers trConfig docTChainSync [chainSyncTr]
txMonitorTr <- mkCardanoTracer
trBase trForward mbTrEKG
"TxMonitorClient"
namesForTTxMonitor
severityTTxMonitor
allPublic
txMonitorTr <-
mkCardanoTracer
trBase trForward mbTrEKG
"TxMonitorClient"
namesForTTxMonitor
severityTTxMonitor
allPublic
configureTracers trConfig docTTxMonitor [txMonitorTr]
txSubmissionTr <- mkCardanoTracer
trBase trForward mbTrEKG
"TxSubmissionClient"
namesForTTxSubmission
severityTTxSubmission
allPublic
txSubmissionTr <-
mkCardanoTracer
trBase trForward mbTrEKG
"TxSubmissionClient"
namesForTTxSubmission
severityTTxSubmission
allPublic
configureTracers trConfig docTTxSubmission [txSubmissionTr]
stateQueryTr <- mkCardanoTracer
trBase trForward mbTrEKG
"StateQueryClient"
namesForTStateQuery
severityTStateQuery
allPublic
stateQueryTr <-
mkCardanoTracer
trBase trForward mbTrEKG
"StateQueryClient"
namesForTStateQuery
severityTStateQuery
allPublic
configureTracers trConfig docTStateQuery [stateQueryTr]
pure $ NtC.Tracers
{ NtC.tChainSyncTracer = Tracer $
Expand Down

0 comments on commit 6b8f816

Please sign in to comment.