|
@@ -61,13 +61,13 @@ public class CpServerApiService {
|
|
|
try {
|
|
|
this.chatContentCheck(gameSupper, param);
|
|
|
} catch (Exception e) {
|
|
|
- log.error("调武哥接口通知消息异常, chatContentMap : {}, e : {}", JsonUtil.toString(param), e.getMessage());
|
|
|
+ log.error("调武哥接口通知消息异常, chatContentMap : {}, e : {}", JsonUtil.toString(param), e.getMessage(), e);
|
|
|
}
|
|
|
//保存聊天数据到数据库
|
|
|
try {
|
|
|
gameUserChatService.addGameUserChat(param);
|
|
|
} catch (Exception e) {
|
|
|
- log.error("保存聊天数据到数据库异常, param : {}, e : {}", JsonUtil.toString(param), e.getMessage());
|
|
|
+ log.error("保存聊天数据到数据库异常, param : {}, e : {}", JsonUtil.toString(param), e.getMessage(), e);
|
|
|
}
|
|
|
return Boolean.TRUE;
|
|
|
}
|