From 413ee3cdf47880828a51e2fd8415a25c4cf8a18a Mon Sep 17 00:00:00 2001 From: James Seibel Date: Tue, 3 Feb 2026 07:41:35 -0600 Subject: [PATCH] remove world gen debug log --- .../worldGeneration/mimicObject/DhLitWorldGenRegion.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/common/src/main/java/com/seibel/distanthorizons/common/wrappers/worldGeneration/mimicObject/DhLitWorldGenRegion.java b/common/src/main/java/com/seibel/distanthorizons/common/wrappers/worldGeneration/mimicObject/DhLitWorldGenRegion.java index 5b77e85e6..dcd9a36a0 100644 --- a/common/src/main/java/com/seibel/distanthorizons/common/wrappers/worldGeneration/mimicObject/DhLitWorldGenRegion.java +++ b/common/src/main/java/com/seibel/distanthorizons/common/wrappers/worldGeneration/mimicObject/DhLitWorldGenRegion.java @@ -388,8 +388,10 @@ public class DhLitWorldGenRegion extends WorldGenRegion if (chunkStatus != ChunkStatus.EMPTY && chunkStatus != debugTriggeredForStatus) { - LOGGER.info("WorldGen requiring [" + chunkStatus + "]" - + " is outside the expected range. Returning EMPTY chunk."); + // logger disabled since this doesn't seem to significantly harm anything + // and it causes more confusion to end users when they see it in the log + //LOGGER.info("WorldGen requiring [" + chunkStatus + "]" + // + " is outside the expected range. Returning EMPTY chunk."); debugTriggeredForStatus = chunkStatus; }