Commit 91591c39038de3fce0e39f3417db962e94026075
1 parent
7a512fb6
添加点播回调日志
Showing
1 changed file
with
2 additions
and
0 deletions
src/main/java/com/cnlive/shenhe/utils/AuditPass.java
| ... | ... | @@ -90,6 +90,8 @@ public class AuditPass { |
| 90 | 90 | } |
| 91 | 91 | String URL = callBack + "?platform=" + platformKey + "&token=" + token; |
| 92 | 92 | Map<String, String> post = httpUtil.post(URL); |
| 93 | + String result = post.get("result"); | |
| 94 | + logger.info("点播回调result:{}", result); | |
| 93 | 95 | return JSONObject.parseObject(post.get("result")); |
| 94 | 96 | } |
| 95 | 97 | ... | ... |