logger打印信息修改,不打印用户信息

This commit is contained in:
2022-07-19 12:24:30 +08:00
parent 5aa655b2b0
commit 1f7332fdbb
2 changed files with 5 additions and 2 deletions

View File

@@ -107,7 +107,8 @@ public class GatewayFilter implements Filter {
if (r != null && r.ok()) {
if (r.getData() != null) {
log.info("loginUser={}", JSON.toJSONString(r.getData()));
//不打印
//log.info("loginUser={}", JSON.toJSONString(r.getData()));
}
chain.doFilter(request, response);
} else {