Reduced the amount of info messages in the console when enabling/disabling

This commit is contained in:
TfT_02
2013-04-13 21:53:00 +02:00
parent f05b9ae365
commit e59c7ac34a
4 changed files with 10 additions and 9 deletions

View File

@ -30,11 +30,11 @@ public abstract class ConfigLoader {
protected void loadFile() {
if (!configFile.exists()) {
plugin.getLogger().info("Creating mcMMO " + fileName + " File...");
plugin.debug("Creating mcMMO " + fileName + " File...");
createFile();
}
else {
plugin.getLogger().info("Loading mcMMO " + fileName + " File...");
plugin.debug("Loading mcMMO " + fileName + " File...");
}
config = YamlConfiguration.loadConfiguration(configFile);

View File

@ -133,7 +133,7 @@ public class mcMMO extends JavaPlugin {
UserManager.addUser(player); // In case of reload add all users back into UserManager
}
getLogger().info("Version " + getDescription().getVersion() + " is enabled!");
debug("Version " + getDescription().getVersion() + " is enabled!");
scheduleTasks();
registerCommands();
@ -198,7 +198,7 @@ public class mcMMO extends JavaPlugin {
}
}
getLogger().info("Was disabled."); // How informative!
debug("Was disabled."); // How informative!
}
public static String getMainDirectory() {