fixed print to logger

This commit is contained in:
Jonas_Jones 2022-12-13 23:40:50 +01:00
parent 6f8ab6b59f
commit 131384cf5b

View file

@ -25,6 +25,6 @@ public class ModConfigs {
private static void assignConfigs() {
EXAMPLE = CONFIG.getOrDefault("example.keypair", 420);
System.out.println("All " + configs.getConfigsList().size() + " have been set properly");
SimpleConfig.LOGGER.info("All " + configs.getConfigsList().size() + " have been set properly");
}
}