Skip to content

Commit

Permalink
Merge pull request #44 from tildejustin/1.16.1
Browse files Browse the repository at this point in the history
remove log message when reaching maximum thread count
  • Loading branch information
tildejustin authored Jan 9, 2025
2 parents 8e75c13 + 12837a0 commit 6498d55
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,11 +129,6 @@ public void createWorker(MinecraftClient client) {
thread.start();

this.threads.add(thread);

// Helper debug message. Prints at most once per reload, so shouldn't noticeably increase log spam.
if (this.threads.size() == this.hardLimitThreads) {
LOGGER.info("Reached maximum Sodium builder threads of {}", this.hardLimitThreads);
}
this.lastThreadAddition = System.currentTimeMillis();
}

Expand Down

0 comments on commit 6498d55

Please sign in to comment.