This commit is contained in:
USER-20220102CG\noblelift
2023-09-04 15:33:13 +08:00
parent 433abd04c6
commit ff90436bc8
2 changed files with 30 additions and 15 deletions

View File

@@ -80,8 +80,8 @@ public class LogAspect {
// 方法路径
String methodName = joinPoint.getTarget().getClass().getName() + "." + signature.getName() + "()";
String params=getParameter(method, joinPoint.getArgs());
log.info("请求方法:{}",methodName);
log.info("请求方法参数:{}",params);
// log.info("请求方法:{}",methodName);
// log.info("请求方法参数:{}",params);
Object result;
currentTime.set(System.currentTimeMillis());