Commit daa8e8a2d2075fb305b1a88607d6c1c197e9a771
1 parent
dd2973b1
错误打印
Showing
2 changed files
with
2 additions
and
2 deletions
src/main/java/com/cnlive/shenhe/job/CommentsJob.java
| ... | ... | @@ -75,7 +75,7 @@ public class CommentsJob { |
| 75 | 75 | logger.error("评论审核回调失败,activity_id:{},code:{},msg:{}", comments.getActivity_id(), code, result.getString("msg")); |
| 76 | 76 | } |
| 77 | 77 | } catch (Exception e) { |
| 78 | - logger.error("评论回调失败,activity_id:{}", comments.getActivity_id()); | |
| 78 | + logger.error("评论回调失败,activity_id:{}", comments.getActivity_id(),e); | |
| 79 | 79 | } |
| 80 | 80 | } |
| 81 | 81 | } | ... | ... |
src/main/java/com/cnlive/shenhe/job/VideosJob.java
| ... | ... | @@ -70,7 +70,7 @@ public class VideosJob { |
| 70 | 70 | logger.error("点播视频回调失败,activity_id:{},code:{},msg:{}", video.getVideo_id(), code, result.getString("msg")); |
| 71 | 71 | } |
| 72 | 72 | } catch (Exception e) { |
| 73 | - logger.error("点播视频回调失败,activity_id:{}", video.getVideo_id()); | |
| 73 | + logger.error("点播视频回调失败,activity_id:{}", video.getVideo_id(),e); | |
| 74 | 74 | } |
| 75 | 75 | } |
| 76 | 76 | } | ... | ... |