Browse Source

一期研报

kobe6258 7 months ago
parent
commit
80f45f3fe1
1 changed files with 3 additions and 0 deletions
  1. 3 0
      common/component/es/es.go

+ 3 - 0
common/component/es/es.go

@@ -316,6 +316,7 @@ func (req *ESQueryRequest) parseJsonQuery() (queryMap map[string]interface{}) {
 func (es *ESClient) Count(params *ESQueryRequest) (response ESResponse, err error) {
 	queryMap := params.parseJsonQuery()
 	jsonQuery, _ := json.Marshal(queryMap)
+	logger.Info("查询语句: %s", string(jsonQuery))
 	request := esapi.CountRequest{
 		Index: []string{params.IndexName},
 		Body:  strings.NewReader(string(jsonQuery)),
@@ -342,6 +343,7 @@ func (es *ESClient) Count(params *ESQueryRequest) (response ESResponse, err erro
 func (es *ESClient) Search(params *ESQueryRequest) (response ESResponse, err error) {
 	queryMap := params.parseJsonQuery()
 	jsonQuery, _ := json.Marshal(queryMap)
+	logger.Info("查询语句: %s", string(jsonQuery))
 	request := esapi.SearchRequest{
 		Index: []string{params.IndexName},
 		Body:  strings.NewReader(string(jsonQuery)),
@@ -400,6 +402,7 @@ func (es *ESClient) GetCount(hits Hits) []Hit {
 // */
 func (es *ESClient) AddOrUpdate(indexName string, id int, doc interface{}) bool {
 	jsonDoc, _ := json.Marshal(doc)
+	logger.Info("查询语句: %s", string(jsonDoc))
 	req := esapi.IndexRequest{
 		Index:      indexName,
 		DocumentID: strconv.Itoa(id),