Skip to content

Commit f6a1048

Browse files
committed
remove log message when reaching maximum thread count
1 parent 728cdc8 commit f6a1048

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

136136
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-
}
142137
this.lastThreadAddition = System.currentTimeMillis();
143138
}
144139

0 commit comments

Comments
 (0)