Merge pull request #99 from CovertJaguar/patch-1

More readable state event logs
This commit is contained in:
cpw 2012-09-15 12:20:26 -07:00
commit 23c89ec054

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))
{