Commit 542a0033 authored by Josh Ji's avatar Josh Ji

log consumed time

parent 63617c4d
......@@ -42,7 +42,7 @@ public class RESTfulApi {
new Object[]{Base64Utils.decodeFromString(identityRequest.HMAC_base64), Base64Utils.decodeFromString(identityRequest.Cx_base64)},
new int[]{Types.VARBINARY, Types.VARBINARY});
long t2 = System.currentTimeMillis();
logger.info("time consumed: {}", t2-t1);
logger.info("time consumed: {}ms", t2-t1);
list.forEach(map->{
map.forEach((k, v)->{
logger.info("{}: {}", k, v instanceof byte[]?HexUtils.toHexString((byte[])v):v);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment