Disabled logging on 1.13 material replacements (again)

This commit is contained in:
ProSavage 2018-12-15 23:04:49 -06:00
parent cc1714b757
commit 90c583f4df
1 changed files with 3 additions and 1 deletions

View File

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