|
@@ -60,7 +60,10 @@ public class SysLogAspect {
|
|
|
Method method = signature.getMethod();
|
|
|
String methodName = method.getName();
|
|
|
Object[] args = joinPoint.getArgs();
|
|
|
- String params = JSON.toJSONString(args[0]);
|
|
|
+ String params = "";
|
|
|
+ if(args.length >0){
|
|
|
+ params = JSON.toJSONString(args[0]);
|
|
|
+ }
|
|
|
Object result = null;
|
|
|
|
|
|
//获取request
|