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; }