fix(fabric-helper): Log a warning when language file for comments cannot be found

This commit is contained in:
2025-11-08 16:51:20 +01:00
parent 03a0b287b8
commit e984ecd155

View File

@@ -35,6 +35,7 @@ public class FabricConfigCommentLoader {
InputStream langInputStream = getClass().getClassLoader().getResourceAsStream(langFilePath); InputStream langInputStream = getClass().getClassLoader().getResourceAsStream(langFilePath);
if (langInputStream == null) { if (langInputStream == null) {
log.warn("Failed to find language file " + langFilePath + " for loading config comments");
return; return;
} }