@@ -90,10 +90,14 @@ public static Runnable createChannelToChannelBiDirectionalHandler(final int byte
9090 try {
9191 final String leftChannelName = leftChannel .getRemoteAddress ().getClass ().getSimpleName ();
9292 final String rightChannelName = rightChannel .getRemoteAddress ().getClass ().getSimpleName ();
93- LOG .infof ("Read %d total bytes from % channel to %s channel" , leftChannelName , rightChannelName , bytesReadLeft );
94- LOG .infof ("Read %d total bytes from % channel to %s channel" , rightChannelName , leftChannelName , bytesReadRight );
95- LOG .infof ("Wrote %d total bytes from % channel to %s channel" , leftChannelName , rightChannelName , bytesWrittenLeft );
96- LOG .infof ("Wrote %d total bytes from % channel to %s channel" , rightChannelName , leftChannelName , bytesWrittenRight );
93+ LOG .infof ("Read %d total bytes from % channel to %s channel" , leftChannelName , rightChannelName ,
94+ bytesReadLeft );
95+ LOG .infof ("Read %d total bytes from % channel to %s channel" , rightChannelName , leftChannelName ,
96+ bytesReadRight );
97+ LOG .infof ("Wrote %d total bytes from % channel to %s channel" , leftChannelName , rightChannelName ,
98+ bytesWrittenLeft );
99+ LOG .infof ("Wrote %d total bytes from % channel to %s channel" , rightChannelName , leftChannelName ,
100+ bytesWrittenRight );
97101 } catch (IOException e ) {
98102 throw new RuntimeException (e );
99103 }
0 commit comments