Commit 7d0f08f1 by 李传峰

移除不必要error日志,增加日志信息

parent ab7aed13
......@@ -319,7 +319,7 @@ public class Cookie {
userInfo = URLDecoder.decode(userInfo, "UTF-8");
LOGGER.info("Cookie的内容如下:{}", userInfo);
} catch (Exception e) {
LOGGER.error("Cookie解析失败:{}" , e.getMessage(), e);
LOGGER.warn("Cookie解析失败:userInfo={},type={},err:{}", userInfo, type , e.getMessage(), e);
throw new BizException(BizException.COOKIE_IS_ILLICIT);
}
String[] userInfoArry = userInfo.split("&");
......
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