We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 728cdc8 commit f6a1048Copy full SHA for f6a1048
1 file changed
src/main/java/me/jellysquid/mods/sodium/client/render/chunk/compile/ChunkBuilder.java
@@ -134,11 +134,6 @@ public void createWorker(MinecraftClient client) {
134
thread.start();
135
136
this.threads.add(thread);
137
-
138
- // Helper debug message. Prints at most once per reload, so shouldn't noticeably increase log spam.
139
- if (this.threads.size() == this.hardLimitThreads) {
140
- LOGGER.info("Reached maximum Sodium builder threads of {}", this.hardLimitThreads);
141
- }
142
this.lastThreadAddition = System.currentTimeMillis();
143
}
144
0 commit comments