use debug logger for feature info

This commit is contained in:
dfsek
2021-05-17 22:48:03 -07:00
parent 2fdb96a850
commit 557098de17

View File

@@ -342,7 +342,7 @@ public class TerraFabricPlugin implements TerraPlugin, ModInitializer {
if(!template.getExcludedRegistryFeatures().contains(entry.getKey().getValue())) {
try {
event.getPack().getTreeRegistry().add(entry.getKey().getValue().toString(), (Tree) entry.getValue());
main.logger().info("Injected ConfiguredFeature " + entry.getKey().getValue() + " as Tree.");
main.getDebugLogger().info("Injected ConfiguredFeature " + entry.getKey().getValue() + " as Tree.");
} catch(DuplicateEntryException ignored) {
}
}