Disabled Logging for material replacement in 1.13 versions as its just spammy.

This commit is contained in:
ProSavage 2018-12-08 20:35:26 -06:00
parent c58ed305a8
commit d510e7ba50
1 changed files with 1 additions and 1 deletions

View File

@ -383,7 +383,7 @@ public class SavageFactions extends MPlugin {
public void replaceStringInConfig(String path, String stringToReplace, String replacementString) {
if (getConfig().getString(path).equals(stringToReplace)) {
SavageFactions.plugin.log("Replacing legacy material '" + stringToReplace + "' with '" + replacementString + "' for config node '" + path + "'.");
// SavageFactions.plugin.log("Replacing legacy material '" + stringToReplace + "' with '" + replacementString + "' for config node '" + path + "'.");
getConfig().set(path, replacementString);
}
}