-
Notifications
You must be signed in to change notification settings - Fork 117
Open
Description
KubeJS/src/main/java/dev/latvian/mods/kubejs/recipe/RecipesKubeEvent.java
Lines 265 to 267 in a33ac93
| if (ex instanceof RecipeComponentException || DevProperties.get().logErroringParsedRecipes) { | |
| ConsoleJS.SERVER.warn("Failed to parse recipe %s! Falling back to vanilla".formatted(recipeStr), ex, POST_SKIP_ERROR); | |
| } |
var message = "Failed to parse recipe %s! Falling back to vanilla".formatted(recipeStr);
if (ex instanceof RecipeComponentException && !DevProperties.get().logErroringParsedRecipes) {
ConsoleJS.SERVER.warn(message, ex, POST_SKIP_ERROR);
} else if (DevProperties.get().logErroringParsedRecipes) {
ConsoleJS.SERVER.error(message, ex, POST_SKIP_ERROR);
}Metadata
Metadata
Assignees
Labels
No labels