Github user ajs6f commented on a diff in the pull request:
https://github.com/apache/jena/pull/319#discussion_r153822788
--- Diff:
jena-text/src/main/java/org/apache/jena/query/text/TextQueryPF.java ---
@@ -224,12 +234,16 @@ private QueryIterator resultsToQueryIterator(Binding
binding, Node s, Node score
}
private QueryIterator variableSubject(Binding binding, Node s, Node
score, Node literal, StrMatch match, ExecutionContext execCxt) {
+ if (log.isTraceEnabled())
+ log.trace("variableSubject: {}", match) ;
--- End diff --
You don't need to guard with `isTraceEnabled()` if you are using this form
of `Logger.trace`.
---