Hello,
I am using Java API client, and making searchRequest.
SearchRequest searchRequest = SearchRequest.Builder.index("indexName").. otherBuilder ..build();
String queryCheck = searchRequest.toString();
toString of SearchRequest gives omitted sentence, not full query string when its length is long.
ex) {"content":{"value":"Hello3"}}}]}}]}},{"bo... <- with 3 dots
It seems that toString is already defined in SearchRequest and don't have other options but using it.
Is there any way that I could get full query string?
Thank you.