From 12837a03446830f8f99e75fc500f994a9cd6b3e8 Mon Sep 17 00:00:00 2001 From: tildejustin Date: Wed, 8 Jan 2025 21:30:55 -0500 Subject: [PATCH] remove log message when reaching maximum thread count --- .../sodium/client/render/chunk/compile/ChunkBuilder.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/main/java/me/jellysquid/mods/sodium/client/render/chunk/compile/ChunkBuilder.java b/src/main/java/me/jellysquid/mods/sodium/client/render/chunk/compile/ChunkBuilder.java index e91242bd..f1ae962d 100644 --- a/src/main/java/me/jellysquid/mods/sodium/client/render/chunk/compile/ChunkBuilder.java +++ b/src/main/java/me/jellysquid/mods/sodium/client/render/chunk/compile/ChunkBuilder.java @@ -129,11 +129,6 @@ public void createWorker(MinecraftClient client) { thread.start(); this.threads.add(thread); - - // Helper debug message. Prints at most once per reload, so shouldn't noticeably increase log spam. - if (this.threads.size() == this.hardLimitThreads) { - LOGGER.info("Reached maximum Sodium builder threads of {}", this.hardLimitThreads); - } this.lastThreadAddition = System.currentTimeMillis(); }