Skip to content

Commit

Permalink
Remove searching utils debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
bpowers1215 committed Oct 17, 2017
1 parent d398b9c commit cbccae9
Showing 1 changed file with 0 additions and 3 deletions.
Expand Up @@ -45,8 +45,6 @@ public static List<ObjectOrdering> createObjectOrderings(SortParam<String> sortP
ItemPath casePath = new ItemPath(T_PARENT);
ItemPath workItemPath = ItemPath.EMPTY_PATH;
ItemPath primaryItemPath;
LOGGER.debug("PROPERTY_NAME: {}", propertyName);
LOGGER.debug("casePath: {}", casePath);
if (CASE_DESCRIPTION.equals(propertyName)) {
primaryItemPath = casePath.subPath(CaseType.F_DESCRIPTION);
} else if (WORK_ITEM_CLOSE_TIMESTAMP.equals(propertyName)) {
Expand All @@ -60,7 +58,6 @@ public static List<ObjectOrdering> createObjectOrderings(SortParam<String> sortP
} else {
primaryItemPath = new ItemPath(new QName(SchemaConstantsGenerated.NS_COMMON, propertyName));
}
LOGGER.debug("primaryItemPath: {}", primaryItemPath);
List<ObjectOrdering> rv = new ArrayList<>();
rv.add(ObjectOrdering.createOrdering(primaryItemPath, sortParam.isAscending() ? OrderDirection.ASCENDING : OrderDirection.DESCENDING));
// additional criteria are used to avoid random shuffling if first criteria is too vague)
Expand Down

0 comments on commit cbccae9

Please sign in to comment.