Improves console logging
All checks were successful
EpicKnarvik97/Blacksmith/pipeline/head This commit looks good
All checks were successful
EpicKnarvik97/Blacksmith/pipeline/head This commit looks good
This commit is contained in:
@ -16,7 +16,6 @@ import java.util.HashSet;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
import java.util.logging.Level;
|
||||
|
||||
/**
|
||||
* A class which keeps track of all default scrapper NPC settings and all global scrapper settings
|
||||
@ -251,8 +250,7 @@ public class GlobalScrapperSettings implements Settings<ScrapperSetting> {
|
||||
for (String trashSalvageInfo : allTrashSalvage) {
|
||||
// Ignore invalid lines
|
||||
if (!trashSalvageInfo.contains(":")) {
|
||||
BlacksmithPlugin.getInstance().getLogger().log(Level.WARNING, String.format("The trash salvage " +
|
||||
"configuration line %s is invalid", trashSalvageInfo));
|
||||
BlacksmithPlugin.warn(String.format("The trash salvage configuration line %s is invalid", trashSalvageInfo));
|
||||
continue;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user