瀏覽代碼

增加ES日志

wangdong6 3 年之前
父節點
當前提交
2b99c94c64
共有 1 個文件被更改,包括 1 次插入1 次删除
  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