|
|
@@ -576,12 +576,12 @@ public class UserServiceImpl implements UserService {
|
|
|
try {
|
|
|
res = HttpUtil.doPost(url, formData, 10000);
|
|
|
if (!res.isSuccess()) {
|
|
|
- syncLog.error(appId, msg + ",同步用户信息失败", JSON.toJSONString(finalUser), res.getContent());
|
|
|
+ syncLog.error(appId, msg + ",同步用户信息失败", JSON.toJSONString(formData), res.getContent());
|
|
|
} else {
|
|
|
- syncLog.info(appId, msg + ",同步用户信息成功", JSON.toJSONString(finalUser));
|
|
|
+ syncLog.info(appId, msg + ",同步用户信息成功", JSON.toJSONString(formData));
|
|
|
}
|
|
|
} catch (Exception e) {
|
|
|
- syncLog.error(appId, msg + ",同步用户信息失败", JSON.toJSONString(finalUser), e.getMessage());
|
|
|
+ syncLog.error(appId, msg + ",同步用户信息失败", JSON.toJSONString(formData), e.getMessage());
|
|
|
}
|
|
|
}
|
|
|
return null;
|