Commit b55eccb0 by jinxin

转移错误日志添加

parent 4fd798a6
...@@ -1088,6 +1088,7 @@ public class StaffApiServiceImpl implements StaffApiService { ...@@ -1088,6 +1088,7 @@ public class StaffApiServiceImpl implements StaffApiService {
stringMap.put("takeoverStaffName",takeOverStaff.getStaffName()); stringMap.put("takeoverStaffName",takeOverStaff.getStaffName());
stringMap.put("errorCode",String.valueOf(dto.getErrcode())); stringMap.put("errorCode",String.valueOf(dto.getErrcode()));
QywxErrCode code = QywxErrCode.getValue(String.valueOf(dto.getErrcode())); QywxErrCode code = QywxErrCode.getValue(String.valueOf(dto.getErrcode()));
logger.info("错误code码:{}",JSON.toJSONString(code));
if (null != code){ if (null != code){
stringMap.put("errorMessage",code.getMsg()); stringMap.put("errorMessage",code.getMsg());
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment