
Bad log call generates java format exception
Mictali opened this issue ยท 0 comments
In File BiomeSpawnListRegistry method loadFromConfig (around line 250) the logger call for the severe error lists two format parameters %s but provides only a single argument generating a java format exception.
SpawnListEntry spawnListEntry = null;
try {
spawnListEntry = builder.build();
} catch (Exception e) {
JASLog.log().severe("Error building %s. Entry will be ignored [%s].", builder);
}