summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMinenash <minenash@protonmail.com>2018-12-16 18:01:21 -0500
committerMinenash <minenash@protonmail.com>2018-12-16 18:01:21 -0500
commit38e42dfabaef1491ac9201cefc858d716c4f7a55 (patch)
treed45cf65b667f97f8ff7133b297774b1eae5ed595
parent2e6a514b5c3bc88cb86e3b60c7f3657651776ad7 (diff)
Updated wording on loading warn messages
-rw-r--r--src/main/java/com/redstoner/modules/check/Check.java4
1 files 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";
}