From 13756b6f2c5c82bb0c324827d7a91322a609a134 Mon Sep 17 00:00:00 2001 From: CovertJaguar Date: Fri, 14 Sep 2012 00:47:48 -0700 Subject: [PATCH] More readable init logs --- fml/common/cpw/mods/fml/common/LoadController.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fml/common/cpw/mods/fml/common/LoadController.java b/fml/common/cpw/mods/fml/common/LoadController.java index c908ffe35..ca4850929 100644 --- a/fml/common/cpw/mods/fml/common/LoadController.java +++ b/fml/common/cpw/mods/fml/common/LoadController.java @@ -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)) {