SEARCH-106: Add hightlighting to the toString() method

This commit is contained in:
Gethin James
2016-10-10 12:26:01 +02:00
parent 5ac30a195e
commit cc8ec6dc85

View File

@@ -1257,6 +1257,7 @@ public class SearchParameters implements BasicSearchParameters
.append(this.excludeTenantFilter).append(", isBulkFetchEnabled=").append(this.isBulkFetchEnabled)
.append(", queryConsistency=").append(this.queryConsistency).append(", sinceTxId=")
.append(this.sinceTxId).append(", searchTerm=").append(this.searchTerm)
.append(", highlight=").append(this.hightlight)
.append(", spellCheck=").append(this.spellCheck).append("]");
return builder.toString();
}