From 2e282433cccc158ec240d9af61cfd6df493e1340 Mon Sep 17 00:00:00 2001 From: James Seibel Date: Wed, 6 Apr 2022 21:08:57 -0500 Subject: [PATCH] replace unnecessary error logs with info logs --- src/main/java/com/seibel/lod/core/objects/lod/LodWorld.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/seibel/lod/core/objects/lod/LodWorld.java b/src/main/java/com/seibel/lod/core/objects/lod/LodWorld.java index d67c2382a..34cede308 100644 --- a/src/main/java/com/seibel/lod/core/objects/lod/LodWorld.java +++ b/src/main/java/com/seibel/lod/core/objects/lod/LodWorld.java @@ -64,7 +64,7 @@ public class LodWorld */ public void selectWorld(String newWorldName) { - ApiShared.LOGGER.error("Selecting world {} while in world {}", newWorldName, worldName); + ApiShared.LOGGER.info("Selecting world {} while in world {}", newWorldName, worldName); if (worldName.equals(newWorldName)) // don't recreate everything if we // didn't actually change worlds @@ -85,7 +85,7 @@ public class LodWorld */ public void deselectWorld() { - ApiShared.LOGGER.error("Deselecting world {}", worldName); + ApiShared.LOGGER.info("Deselecting world {}", worldName); worldName = NO_WORLD_LOADED; saveAllDimensions(true); // Make sure all dims are saved. This will block threads lodDimensions = null; @@ -101,7 +101,7 @@ public class LodWorld { if (lodDimensions == null) return; - ApiShared.LOGGER.error("Adding dim {} to world {}", newDimension, worldName); + ApiShared.LOGGER.info("Adding dim {} to world {}", newDimension, worldName); LodDimension oldDim = lodDimensions.put(newDimension.dimension, newDimension); if (oldDim != null)