diff --git a/src/com/wentch/redkale/net/AsyncConnection.java b/src/com/wentch/redkale/net/AsyncConnection.java index 560ecd791..7c648c6d9 100644 --- a/src/com/wentch/redkale/net/AsyncConnection.java +++ b/src/com/wentch/redkale/net/AsyncConnection.java @@ -273,6 +273,7 @@ public abstract class AsyncConnection implements AsynchronousByteChannel, AutoCl rc = Channels.newChannel(socket.getInputStream()); wc = Channels.newChannel(socket.getOutputStream()); } catch (IOException e) { + e.printStackTrace(); } this.readChannel = rc; this.writeChannel = wc;