|
@@ -27,7 +27,7 @@ public class CdssLogUtil {
|
|
|
* @param joinPoint
|
|
|
*/
|
|
|
public static TranLog tranLogReqAspect(ProceedingJoinPoint joinPoint) {
|
|
|
- TranLog TranLog = new TranLog();
|
|
|
+ TranLog tranLog = new TranLog();
|
|
|
//请求的参数
|
|
|
Object[] args = joinPoint.getArgs();
|
|
|
//请求的参数
|
|
@@ -37,9 +37,9 @@ public class CdssLogUtil {
|
|
|
break;
|
|
|
}
|
|
|
if (!StringUtil.isEmpty(params)) {
|
|
|
- TranLog.setParams(params);
|
|
|
+ tranLog.setParams(params);
|
|
|
}
|
|
|
- return TranLog;
|
|
|
+ return tranLog;
|
|
|
}
|
|
|
|
|
|
/**
|