And turn down some more logging, now we have useful logging back again..

This commit is contained in:
Christian 2014-01-20 16:09:34 -05:00
parent d22c79abd7
commit cb47b4ac46

View file

@ -23,7 +23,7 @@ public class HandshakeMessageHandler<S extends Enum<S> & IHandshakeState<S>> ext
protected void channelRead0(ChannelHandlerContext ctx, FMLHandshakeMessage msg) throws Exception
{
S state = ctx.attr(fmlHandshakeState).get();
FMLLog.info(msg.toString(stateType) + "->" + state.getClass().getName().substring(state.getClass().getName().lastIndexOf('.')+1)+":"+state);
FMLLog.finer(msg.toString(stateType) + "->" + state.getClass().getName().substring(state.getClass().getName().lastIndexOf('.')+1)+":"+state);
S newState = state.accept(ctx, msg);
ctx.attr(fmlHandshakeState).set(newState);
}