Skip to content

Commit 6498d55

Browse files
authored
Merge pull request #44 from tildejustin/1.16.1
remove log message when reaching maximum thread count
2 parents 8e75c13 + 12837a0 commit 6498d55

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
@@ -129,11 +129,6 @@ public void createWorker(MinecraftClient client) {
129129
thread.start();
130130

131131
this.threads.add(thread);
132-
133-
// Helper debug message. Prints at most once per reload, so shouldn't noticeably increase log spam.
134-
if (this.threads.size() == this.hardLimitThreads) {
135-
LOGGER.info("Reached maximum Sodium builder threads of {}", this.hardLimitThreads);
136-
}
137132
this.lastThreadAddition = System.currentTimeMillis();
138133
}
139134

0 commit comments

Comments
 (0)