@@ -124,15 +124,15 @@ public void handle(String pathInContext, Request request, HttpServletRequest htt
124124String md5 =TestUtils .md5 (bytes ,0 ,total );
125125httpResponse .addHeader (CONTENT_MD5 .toString (),md5 );
126126
127- if (!md5 .equals (clientMd5 )) {
128- int length =total ;
129- int rows =length /16 + (length %15 ==0 ?0 :1 ) +4 ;
130- StringBuilder buf =new StringBuilder ("JETTY" .length () +1 +"JETTY" .length () +2 +10 +1 +2 +rows *80 );
131-
132- buf .append ("JETTY" ).append (' ' ).append ("JETTY" ).append (": " ).append (length ).append ('B' ).append (StringUtil .NEWLINE );
133- ByteBufUtil .appendPrettyHexDump (buf ,Unpooled .wrappedBuffer (bytes ));
134- LOGGER .error (buf .toString ());
135- }
127+ // if (!md5.equals(clientMd5)) {
128+ // int length = total;
129+ // int rows = length / 16 + (length % 15 == 0 ? 0 : 1) + 4;
130+ // StringBuilder buf = new StringBuilder("JETTY".length() + 1 + "JETTY".length() + 2 + 10 + 1 + 2 + rows * 80);
131+ //
132+ // buf.append("JETTY").append(' ').append("JETTY").append(": ").append(length).append('B').append(StringUtil.NEWLINE);
133+ // ByteBufUtil.appendPrettyHexDump(buf, Unpooled.wrappedBuffer(bytes));
134+ // LOGGER.error(buf.toString());
135+ // }
136136
137137httpResponse .getOutputStream ().write (bytes ,0 ,total );
138138 }else {