Skip to content

Commit

Permalink
fix: Add thread logging
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelsJP committed Jul 9, 2024
1 parent 526d589 commit 11c0f43
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ public int getPreparationThreads() {
*/
public void setPreparationThreads(int preparationThreads) {
this.preparationThreads = preparationThreads;
LOGGER.info("Using {} threads for ch preparation threads", preparationThreads);
this.threadPool = java.util.concurrent.Executors.newFixedThreadPool(preparationThreads);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ public int getPreparationThreads() {
*/
public void setPreparationThreads(int preparationThreads) {
this.preparationThreads = preparationThreads;
LOGGER.info("Using {} threads for lm preparation threads", preparationThreads);
this.threadPool = java.util.concurrent.Executors.newFixedThreadPool(preparationThreads);
}

Expand Down

0 comments on commit 11c0f43

Please sign in to comment.