Removed println

This commit is contained in:
Trustin Lee 2009-02-26 09:13:26 +00:00
parent 5fdce19902
commit 284fc4db44

View File

@ -333,8 +333,6 @@ public class ServerBootstrap extends Bootstrap {
public void exceptionCaught(
ChannelHandlerContext ctx, ExceptionEvent e)
throws Exception {
System.err.println(e);
e.getCause().printStackTrace();
boolean finished = futureQueue.offer(failedFuture(e.getChannel(), e.getCause()));
assert finished;
ctx.sendUpstream(e);