From 5d26dcc3437317ddba6d1df1d8cd4c696b2b8eca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=9C=B0=E5=B9=B3=E7=BA=BF?= <22250530@qq.com> Date: Mon, 31 Aug 2015 16:19:02 +0800 Subject: [PATCH] --- src/com/wentch/redkale/util/Utility.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/wentch/redkale/util/Utility.java b/src/com/wentch/redkale/util/Utility.java index 49ad74526..cc040cb37 100644 --- a/src/com/wentch/redkale/util/Utility.java +++ b/src/com/wentch/redkale/util/Utility.java @@ -78,7 +78,7 @@ public final class Utility { public static void println(byte... bytes) { if (bytes == null) return; StringBuilder sb = new StringBuilder(); - sb.append('['); + sb.append(bytes.length).append(".["); for (byte b : bytes) { if (sb.length() > 1) sb.append(','); int v = b & 0xff;