Commit 8a5905c6 by 郑永强

bug: [none] error告警日志-getUserInfo

parent 790da83a
......@@ -152,10 +152,10 @@ public class Cookie {
throw BizException.COOKIE_IS_ILLICIT;
}
try {
userInfo = URLDecoder.decode(userInfo, "UTF-8");
LOGGER.info("Cookie的内容如下:{}" , userInfo);
userInfo = URLDecoder.decode(userInfo, "UTF-8");
} catch (Exception e) {
LOGGER.error("Cookie解析失败:{}" , e.getMessage(), e);
LOGGER.warn("Cookie解析失败:userInfo={},err={}", userInfo, e.getMessage(), e);
throw BizException.COOKIE_IS_ILLICIT;
}
Map<String, Object> userInfos = new HashMap<>();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment