Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
tbenr committed Nov 5, 2024
1 parent d813213 commit 7e92efd
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,10 @@ public void processingComplete(
performanceTracker.report(
timeAtSlotStartTimeStamp,
isLateEvent,
(event, stepDuration) ->
blockImportMetrics.recordValue(stepDuration, event.getLeft(), resultMetricLabelValue),
(event, stepDuration) -> {
blockImportMetrics.recordValue(stepDuration, event.getLeft(), resultMetricLabelValue);
LOG.trace("Block import step {} took {}ms", event.getLeft(), stepDuration);
},
totalProcessingDuration ->
blockImportMetrics.recordValue(
totalProcessingDuration, TOTAL_PROCESSING_TIME_LABEL, resultMetricLabelValue),
Expand Down

0 comments on commit 7e92efd

Please sign in to comment.