Skip to content

Commit

Permalink
small debugDump change for search
Browse files Browse the repository at this point in the history
  • Loading branch information
KaterynaHonchar committed Feb 16, 2022
1 parent 457a4eb commit d965443
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,12 @@ public String debugDump(int indent) {
DebugUtil.dumpObjectSizeEstimate(sb, "advancedQuery", advancedQuery, indent + 2);
DebugUtil.debugDumpWithLabelLn(sb, "advancedError", advancedError, indent + 1);
DebugUtil.debugDumpWithLabelLn(sb, "type", getTypeClass(), indent + 1);
// DebugUtil.dumpObjectSizeEstimate(sb, "allDefinitions", allDefinitions, indent + 2);
DebugUtil.dumpObjectSizeEstimate(sb, "allDefinitions", searchConfigModel.getObject(), indent + 2);
List<AbstractSearchItemWrapper> items = searchConfigModel.getObject().getItemsList();
for (AbstractSearchItemWrapper item : items) {
DebugUtil.dumpObjectSizeEstimate(sb, "item " + item.getName(), item, indent + 2);
}

// DebugUtil.dumpObjectSizeEstimate(sb, "availableDefinitions", availableDefinitions, indent + 2);
DebugUtil.debugDumpWithLabelLn(sb, "objectCollectionSpecialItems", objectCollectionSearchItem, indent + 1);
DebugUtil.dumpObjectSizeEstimate(sb, "objectCollectionSpecialItemsSize", objectCollectionSearchItem, indent + 1);
Expand Down

0 comments on commit d965443

Please sign in to comment.