|
@@ -1038,6 +1038,7 @@ public class UserServiceImpl implements UserService {
|
|
|
|
|
|
|
|
|
String url = app.getBackUserUrl();
|
|
|
+ LOGGER.info("url:{}", url);
|
|
|
HttpUtil.ResponseWrap res = null;
|
|
|
ModelMap formData = new ModelMap();
|
|
|
formData.put("dialectUID", user.getImId());
|
|
@@ -1053,7 +1054,7 @@ public class UserServiceImpl implements UserService {
|
|
|
} else {
|
|
|
JSONObject obj = JSON.parseObject(res.getContent());
|
|
|
if (obj.getString("resultMsg") != null) {
|
|
|
- LOGGER.info("else错误信息:{}, 同步用户信息失败:{}, {} ", msg, formData.toString(), res.getContent());
|
|
|
+ LOGGER.info("else错误信息:{}, 同步用户信息失败:{}, {}, {} ", msg, formData.toString(), res.toString());
|
|
|
syncLogger.error(appId, msg + ",同步用户信息失败", formData.toString(), res.getContent());
|
|
|
}
|
|
|
LOGGER.info("成功信息:{}, 同步用户信息成功:{}, {} ", msg, formData.toString(), res.getContent());
|