We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f77ad52 + c5b5ccf commit 083cb36Copy full SHA for 083cb36
1 file changed
src/main/java/me/jellysquid/mods/sodium/client/render/chunk/compile/ChunkBuilder.java
@@ -135,11 +135,6 @@ public void createWorker(MinecraftClient client) {
135
thread.start();
136
137
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
- }
143
this.lastThreadAddition = System.currentTimeMillis();
144
}
145
0 commit comments