Commit f9b62d2a by 吴博

Merge branch 'fixbug/1009519' into 'master'

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

See merge request rays/pcloud-common-parent!324
parents 790da83a 8a5905c6
......@@ -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