正在显示
1 个修改的文件
包含
1 行增加
和
1 行删除
| @@ -197,7 +197,7 @@ public class LogAspect | @@ -197,7 +197,7 @@ public class LogAspect | ||
| 197 | { | 197 | { |
| 198 | for (int i = 0; i < paramsArray.length; i++) | 198 | for (int i = 0; i < paramsArray.length; i++) |
| 199 | { | 199 | { |
| 200 | - if (!isFilterObject(paramsArray[i])) | 200 | + if (StringUtils.isNotNull(paramsArray[i]) && !isFilterObject(paramsArray[i])) |
| 201 | { | 201 | { |
| 202 | Object jsonObj = JSON.toJSON(paramsArray[i]); | 202 | Object jsonObj = JSON.toJSON(paramsArray[i]); |
| 203 | params += jsonObj.toString() + " "; | 203 | params += jsonObj.toString() + " "; |
-
请 注册 或 登录 后发表评论