Skip to content

Commit

Permalink
Add throttler statistics to final log message of scanner thread.
Browse files Browse the repository at this point in the history
  • Loading branch information
nfsantos committed Sep 18, 2024
1 parent 0096a9e commit 8736a49
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ public void run() {
queue.clear();
LOG.info("Scan task interrupted, exiting");
} finally {
LOG.info("Scanner reached end of FFS, stopping download threads. Statistics: {}", formatAggregateStatistics());
LOG.info("Scanner reached end of FFS, stopping download threads. Statistics: {} {}", formatAggregateStatistics(), throttler.formatStats());
Thread.currentThread().setName(oldName);
queue.put(SENTINEL);
}
Expand Down

0 comments on commit 8736a49

Please sign in to comment.