Skip to content

Commit

Permalink
Fix logging the evaluation time when a tx is selected for block creat…
Browse files Browse the repository at this point in the history
…ion (hyperledger#7636)

Signed-off-by: Fabio Di Fabio <[email protected]>
  • Loading branch information
fab-10 authored Sep 18, 2024
1 parent 0d9fa16 commit 6df4149
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ private TransactionSelectionResult handleTransactionSelected(
LOG.atTrace()
.setMessage("Selected {} for block creation, evaluated in {}")
.addArgument(transaction::toTraceLog)
.addArgument(evaluationContext.getPendingTransaction())
.addArgument(evaluationContext.getEvaluationTimer())
.log();
return SELECTED;
}
Expand Down

0 comments on commit 6df4149

Please sign in to comment.