Browse Source

增加ES日志

wangdong6 3 years ago
parent
commit
2b99c94c64
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/main/java/com/ai/bss/es/esmanage/controller/EsController.java

+ 1 - 1
src/main/java/com/ai/bss/es/esmanage/controller/EsController.java

@ -24,7 +24,7 @@ public class EsController {
24 24
    @PostMapping("/execute")
25 25
    ResponseResult execute(@RequestBody RequestEntity requestEntity) throws IOException {
26 26
27
        log.info(JSONObject.toJSONString(requestEntity));
27
        log.info("requestEntity:\n"+JSONObject.toJSONString(requestEntity));
28 28
        return esService.executeEsEntity(requestEntity);
29 29
    }
30 30