@@ -123,6 +123,12 @@ public class SystemJavaAdapter extends JavaAdapter {
}
result = true;
} catch (Exception e) {
+ long cost = System.currentTimeMillis() - start;
+ System.err.println(className + "." + method + " <EXCEPTION>cost:" + cost
+ / 1000.0);
+ logger.info(className + "." + method + "<EXCEPTION> cost:" + cost
+ e.printStackTrace();
} finally {
try {
if (bean instanceof BaseController) {