Skip to content

Commit

Permalink
Remove per-recipe logging: -170kiB of logs in GTNH (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
eigenraven authored Sep 26, 2022
1 parent 380518b commit b607aeb
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,14 +136,8 @@ public void merge(RecipeConfig userConfig) {
}
for (RecipeElement recipe : group.recipes.values()) {
if (recipe.isValid()) {
if (modifyGroup.recipes.containsKey(recipe.name)) {
Log.debug("Replacing core recipe " + recipe.name + " with user defined recipe.");
} else {
Log.debug("Added user defined recipe " + recipe.name);
}
modifyGroup.addRecipe(recipe);
} else {
Log.debug("Removed recipe " + recipe.name + " due to user config.");
modifyGroup.recipes.remove(recipe.name);
}
}
Expand Down

0 comments on commit b607aeb

Please sign in to comment.