ref: 2c305a89aceb99de504672b0b1dce29d47d09aa2
package net.fabricmc.tsughoggr; import btw.AddonHandler; import net.fabricmc.api.ModInitializer; import java.util.logging.Logger; public class TSGGloryholes implements ModInitializer { // This logger can be used to write text to the console and the log file. // That way, it's clear which mod wrote info, warnings, and errors. // public static final Logger LOGGER = Logger.getLogger("modid"); @Override public void onInitialize() { // This code runs as soon as Minecraft is in a mod-load-ready state. // However, some things (like resources) may still be uninitialized. // Proceed with mild caution. AddonHandler.logMessage("Glory Glory"); } }