hi im looking to supress the ugly "Failed to read [...]" errors shown in /kubejs errors server and leave just the fancy and actually readable one i print out myself
console.SERVER.error(`No valid post type! Must be one of ${listPossibleIDs(allPostActions)}`);
(listPossibleIDs lists all possible IDs)
the schema is set up with or'd RecipeComponents because each Post Action can have different parameters
for now this is manageable, but if i were to add, say, 100 components (which is more than there will ever be, but you get the idea), the error list is inflated to 200!! users will Not read all that; i have a hard time they'll read this as-is
yknow perhaps it was a better idea to go for a full blown addon after all