Reduce log output when preloading JSONs

This commit is contained in:
embeddedt 2023-01-03 21:11:56 -05:00
parent fe1e39ad10
commit 878d682eee
No known key found for this signature in database
GPG Key ID: A69433EC199B5613

View File

@ -65,7 +65,7 @@ public abstract class ModelBakeryMixin {
try { try {
return this.loadBlockModel(location); return this.loadBlockModel(location);
} catch(Throwable e) { } catch(Throwable e) {
ModernFix.LOGGER.warn("Model " + location + " will not be preloaded", e); ModernFix.LOGGER.warn("Model " + location + " will not be preloaded");
return null; return null;
} }
} }