*add else statement to prevent duplicate exception logging

This commit is contained in:
md_5 2013-03-16 21:09:16 +11:00
parent 54098c8989
commit 2e51ec4fba

View File

@ -79,8 +79,7 @@ public class HandlerBoss extends ChannelInboundMessageHandlerAdapter<byte[]>
if ( cause instanceof ReadTimeoutException )
{
ProxyServer.getInstance().getLogger().log( Level.WARNING, handler + " - read timed out" );
}
if ( cause instanceof IOException )
} else if ( cause instanceof IOException )
{
ProxyServer.getInstance().getLogger().log( Level.WARNING, handler + " - IOException: " + cause.getMessage() );
} else