Commit 2004eefca5923e3af34825005822ed10bcdc25c9

Authored by 徐近程
1 parent 86253a1e

update

src/main/java/com/cnlive/shenhe/utils/AuditPass.java
... ... @@ -97,7 +97,9 @@ public class AuditPass {
97 97 HttpUtil httpUtil = HttpUtil.init();
98 98 httpUtil.setParam("param", params.toJSONString());
99 99 Map<String, String> post = httpUtil.post(callBack);
100   - return JSONObject.parseObject(post.get("result"));
  100 + String result = post.get("result");
  101 + logger.info("直播回调result:{}",result);
  102 + return JSONObject.parseObject(post.get("result"));
101 103 }
102 104  
103 105 /**
... ...