Skip to content

Commit

Permalink
Fix log message data for sortOrders
Browse files Browse the repository at this point in the history
  • Loading branch information
mosabua authored and wendigo committed Sep 4, 2024
1 parent e25deb6 commit 9e294a1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ private PageWithPositionComparator internalCompilePageWithPositionComparator(Lis
comparator = pageWithPositionsComparatorClass.getConstructor().newInstance();
}
catch (Throwable t) {
log.error(t, "Error compiling comparator for channels %s with order %s", sortChannels, sortChannels);
log.error(t, "Error compiling comparator for channels %s with order %s", sortChannels, sortOrders);
comparator = new SimplePageWithPositionComparator(types, sortChannels, sortOrders, typeOperators);
}
return comparator;
Expand Down

0 comments on commit 9e294a1

Please sign in to comment.