!1 update src/main/java/cn/langpy/kotime/handler/ComputeTimeHandler.java.

Merge pull request !1 from darren/N/A
This commit is contained in:
Huoyo 2021-04-20 13:25:44 +08:00 committed by Gitee
commit 86e2c9afb2

View File

@ -30,7 +30,7 @@ public class ComputeTimeHandler {
if ("chinese".equals(computeTime.value())) { if ("chinese".equals(computeTime.value())) {
log.info("调用方法="+pjp.getTarget().getClass().getName()+"."+pjp.getSignature().getName()+",耗时="+((end-begin)/1000000)+"毫秒"); log.info("调用方法="+pjp.getTarget().getClass().getName()+"."+pjp.getSignature().getName()+",耗时="+((end-begin)/1000000)+"毫秒");
}else{ }else{
log.info("method="+pjp.getTarget().getClass().getName()+"."+pjp.getSignature().getName()+"runTime="+((end-begin)/1000000)+"毫秒"); log.info("method="+pjp.getTarget().getClass().getName()+"."+pjp.getSignature().getName()+"runTime="+((end-begin)/1000000)+"ms");
} }
return obj; return obj;
} }