From 38e42dfabaef1491ac9201cefc858d716c4f7a55 Mon Sep 17 00:00:00 2001 From: Minenash Date: Sun, 16 Dec 2018 18:01:21 -0500 Subject: [PATCH] Updated wording on loading warn messages --- src/main/java/com/redstoner/modules/check/Check.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/redstoner/modules/check/Check.java b/src/main/java/com/redstoner/modules/check/Check.java index 4204c05..cdbd269 100644 --- a/src/main/java/com/redstoner/modules/check/Check.java +++ b/src/main/java/com/redstoner/modules/check/Check.java @@ -53,7 +53,7 @@ public class Check implements Module, Listener { } if (config == null || !config.containsKey("database") || !config.containsKey("table")) { - getLogger().warn("Could not load the Check config file, ip info for offline users and website data is unavaliable!"); + getLogger().warn("Could not load the Check config file, ip info for offline users and website data will be unavaliable!"); noTableReason = "Could not load the config file"; config.put("database", "redstoner"); @@ -74,7 +74,7 @@ public class Check implements Module, Listener { MysqlDatabase database = MysqlHandler.INSTANCE.getDatabase(config.get("database") + "?autoReconnect=true"); table = database.getTable(config.get("table")); } catch (Exception e) { - getLogger().warn("Could not use the Check config file, ip info for offline users and website data is unavaliable!"); + getLogger().warn("Could not use the Check config file, ip info for offline users and website data will be unavaliable!"); noTableReason = "Could not use the config file"; }