Skip to content

Commit

Permalink
Add excluded time collector.
Browse files Browse the repository at this point in the history
  • Loading branch information
khatchad committed Oct 6, 2023
1 parent 80a4bca commit 7df0afa
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -214,12 +214,7 @@ public Object execute(ExecutionEvent event) throws ExecutionException {
}

// overall results time.
resultsPrinter.print(
// TODO:
// (
resultsTimeCollector.getCollectedTime()
// - processor.getExcludedTimeCollector().getCollectedTime())
/ 1000.0);
resultsPrinter.print((resultsTimeCollector.getCollectedTime() - processor.getExcludedTimeCollector().getCollectedTime()) / 1000.0);

// end the record.
resultsPrinter.println();
Expand Down

0 comments on commit 7df0afa

Please sign in to comment.