Skip to content

Commit

Permalink
Suppress warning for recipe catalyst item from config not being found (
Browse files Browse the repository at this point in the history
  • Loading branch information
miozune authored Nov 9, 2023
1 parent bc7efcf commit 2fc2ecf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/codechicken/nei/recipe/RecipeCatalysts.java
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ public static void loadCatalystInfo() {
if (itemName == null || itemName.isEmpty()) continue;
ItemStack stack = NEIServerUtils.getModdedItem(itemName, record.get("nbtInfo"));
if (stack == null) {
NEIClientConfig.logger.warn("Couldn't find ItemStack " + itemName);
NEIClientConfig.logger.debug("Couldn't find ItemStack " + itemName);
continue;
}
CatalystInfo catalystInfo = new CatalystInfo(stack, priority);
Expand Down

0 comments on commit 2fc2ecf

Please sign in to comment.