Debug logging for registration timings

This commit is contained in:
Nicholas Ignoffo 2017-10-09 12:34:14 -07:00
parent 2a1911ea07
commit e2538d9291
5 changed files with 68 additions and 34 deletions

View file

@ -133,4 +133,9 @@ public class BloodMagic {
public void onIMCRecieved(FMLInterModComms.IMCEvent event) {
IMCHandler.handleIMC(event);
}
public static void debug(String message, Object... args) {
if (IS_DEV)
LOGGER.info("[DEBUG] " + message, args);
}
}