Commit 00756bfa authored by nivetha's avatar nivetha
Browse files

index request log

Showing with 1 addition and 0 deletions
+1 -0
......@@ -136,6 +136,7 @@ public class ElasticSearchRepository {
try {
IndexRequest indexRequest = new IndexRequest().index(indexName).id(id).source(new Gson().toJson(object),
XContentType.JSON);
LOGGER.info("Index request: " + indexRequest);
IndexResponse response = client.index(indexRequest, RequestOptions.DEFAULT);
if (!StringUtils.isBlank(response.toString()))
LOGGER.info("Response : {}", response);
......
Supports Markdown
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