More readable init logs

This commit is contained in:
CovertJaguar 2012-09-14 00:47:48 -07:00
parent 0de240c4fe
commit 13756b6f2c

View file

@ -120,9 +120,9 @@ public class LoadController
activeContainer = mc;
String modId = mc.getModId();
stateEvent.applyModContainer(activeContainer());
FMLLog.finer("Posting state event %s to mod %s", stateEvent, modId);
FMLLog.finer("Posting state event %s to mod %s", stateEvent.getEventType(), modId);
eventChannels.get(modId).post(stateEvent);
FMLLog.finer("State event %s delivered to mod %s", stateEvent, modId);
FMLLog.finer("State event %s delivered to mod %s", stateEvent.getEventType(), modId);
activeContainer = null;
if (!errors.containsKey(modId))
{