Commit 62048fec515bcce8981a33b7b097c6b39a4bba27

Authored by 周伟鹏
1 parent 656e50c4

错误打印

src/main/java/com/cnlive/shenhe/job/CommentsJob.java
@@ -75,7 +75,7 @@ public class CommentsJob { @@ -75,7 +75,7 @@ public class CommentsJob {
75 logger.error("评论审核回调失败,activity_id:{},code:{},msg:{}", comments.getActivity_id(), code, result.getString("msg")); 75 logger.error("评论审核回调失败,activity_id:{},code:{},msg:{}", comments.getActivity_id(), code, result.getString("msg"));
76 } 76 }
77 } catch (Exception e) { 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,7 +70,7 @@ public class VideosJob {
70 logger.error("点播视频回调失败,activity_id:{},code:{},msg:{}", video.getVideo_id(), code, result.getString("msg")); 70 logger.error("点播视频回调失败,activity_id:{},code:{},msg:{}", video.getVideo_id(), code, result.getString("msg"));
71 } 71 }
72 } catch (Exception e) { 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 }