Commit bd305ef6 by 朱海

[chg]修改日志

1 parent 3c823403
...@@ -179,7 +179,7 @@ public class PersonService { ...@@ -179,7 +179,7 @@ public class PersonService {
if (poolId != null) { if (poolId != null) {
poolIds.add(poolId); poolIds.add(poolId);
} }
log.info("人员匹配操作开始,PoolIds:[{}]", poolIds); log.info("人员匹配操作开始,PoolIds:[{}],rid:{}", poolIds, rid);
try { try {
for (String id : poolIds) { for (String id : poolIds) {
Pool pool = new Pool(); Pool pool = new Pool();
...@@ -204,7 +204,7 @@ public class PersonService { ...@@ -204,7 +204,7 @@ public class PersonService {
} }
success.setMatch(1); success.setMatch(1);
success.setPersonPoolStatus(poolStatus); success.setPersonPoolStatus(poolStatus);
log.info("人员匹配操作完成,PoolIds:[{}}, {}", poolIds, JSON.toJSONString(poolStatus)); log.info("人员匹配操作完成,PoolIds:[{}}, {},rid:{}", poolIds, JSON.toJSONString(poolStatus), rid);
return success; return success;
} catch (ElasticsearchStatusException e) { } catch (ElasticsearchStatusException e) {
if (e.status() == RestStatus.BAD_REQUEST && e.getDetailedMessage().contains(Constant.CLASS_CAST_EXCEPTION)) { if (e.status() == RestStatus.BAD_REQUEST && e.getDetailedMessage().contains(Constant.CLASS_CAST_EXCEPTION)) {
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!