Commit 2004eefca5923e3af34825005822ed10bcdc25c9
1 parent
86253a1e
update
Showing
1 changed file
with
3 additions
and
1 deletions
src/main/java/com/cnlive/shenhe/utils/AuditPass.java
| @@ -97,7 +97,9 @@ public class AuditPass { | @@ -97,7 +97,9 @@ public class AuditPass { | ||
| 97 | HttpUtil httpUtil = HttpUtil.init(); | 97 | HttpUtil httpUtil = HttpUtil.init(); |
| 98 | httpUtil.setParam("param", params.toJSONString()); | 98 | httpUtil.setParam("param", params.toJSONString()); |
| 99 | Map<String, String> post = httpUtil.post(callBack); | 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 | /** |