modify RequestLog.log logo info

This commit is contained in:
jinhaiyang 2024-05-13 17:21:44 +08:00
parent 86187b1120
commit a0419d178a

View File

@ -42,8 +42,8 @@ public class RequestLog {
stopWatch.start(); stopWatch.start();
Object proceed = joinPoint.proceed(); Object proceed = joinPoint.proceed();
stopWatch.stop(); stopWatch.stop();
log.info("[response]返回记录:responseParam = {} latency = {}", JSONUtil.toJsonStr(proceed), log.info("[response]返回记录: latency = {} responseParam = {}", stopWatch.getTotalTimeMillis(),
stopWatch.getTotalTimeMillis()); JSONUtil.toJsonStr(proceed));
return proceed; return proceed;
} }
} }