Skip to content

Commit 083cb36

Browse files
authored
Merge pull request #45 from tildejustin/mac/1.16.1
mac - remove log message when reaching maximum thread count
2 parents f77ad52 + c5b5ccf commit 083cb36

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

src/main/java/me/jellysquid/mods/sodium/client/render/chunk/compile/ChunkBuilder.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -135,11 +135,6 @@ public void createWorker(MinecraftClient client) {
135135
thread.start();
136136

137137
this.threads.add(thread);
138-
139-
// Helper debug message. Prints at most once per reload, so shouldn't noticeably increase log spam.
140-
if (this.threads.size() == this.hardLimitThreads) {
141-
LOGGER.info("Reached maximum Sodium builder threads of {}", this.hardLimitThreads);
142-
}
143138
this.lastThreadAddition = System.currentTimeMillis();
144139
}
145140

0 commit comments

Comments
 (0)