修改LogAspect中日志判断逻辑

This commit is contained in:
wulin 2021-05-31 10:12:55 +08:00
parent 57d5a519af
commit eea50fdd4b

View File

@ -80,7 +80,7 @@ public class LogAspect {
//过滤掉spring的一些http请求信息下面的转jsonstring会抛异常
if (args != null && args.length > 0) {
for (Object arg1 : args) {
if (arg instanceof HttpServletResponse) {
if (arg1 instanceof HttpServletResponse) {
continue;
} else if (arg1 instanceof HttpServletRequest) {
continue;