From c74b0466b92df4c0751bf65ce6dd2ef8883fa14b Mon Sep 17 00:00:00 2001 From: Telesphoreo Date: Thu, 24 Feb 2022 00:24:27 -0600 Subject: [PATCH] better messages --- src/main/java/dev/plex/config/Config.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/dev/plex/config/Config.java b/src/main/java/dev/plex/config/Config.java index 4b0a39e..0b27b2f 100644 --- a/src/main/java/dev/plex/config/Config.java +++ b/src/main/java/dev/plex/config/Config.java @@ -69,14 +69,14 @@ public class Config extends YamlConfiguration { // If it doesn't contain the key, we set the key based off what was found inside the plugin jar externalYamlConfig.set(string, internalYamlConfig.get(string)); - PlexLog.log("Setting key: " + string + " to the default value(s) since it does not exist!"); + PlexLog.log("Setting key: " + string + " in " + this.name + " to the default value(s) since it does not exist!"); added = true; } } if (added) { externalYamlConfig.save(file); - PlexLog.log("Saving new configuration file..."); + PlexLog.log("Saving new file..."); } super.load(file); }