diff --git a/xplat/src/main/java/lgbt/greenhouse/config/impl/GreenhouseConfigImpl.java b/xplat/src/main/java/lgbt/greenhouse/config/impl/GreenhouseConfigImpl.java index 31d9859..27fcf1d 100644 --- a/xplat/src/main/java/lgbt/greenhouse/config/impl/GreenhouseConfigImpl.java +++ b/xplat/src/main/java/lgbt/greenhouse/config/impl/GreenhouseConfigImpl.java @@ -176,8 +176,8 @@ public class GreenhouseConfigImpl { if (file.exists()) { try (FileReader reader = new FileReader(file)) { read = executor.read(reader); - } catch (IOException e) { - CONFIG_SAVE_LOG.error("Could not save config '{}'", holder.getModId(), e); + } catch (Exception e) { + CONFIG_SAVE_LOG.warn("Failed to load comments whilst saving config '{}'", holder.getModId(), e); } }