Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -374,8 +374,6 @@ public TaskBoard execute(BindingSet bindingSet) {
var translated = toBeResultPropagated.translate(n.getRule().getAntecedent(),
Match.invertAll(matches));

LOG.trace("EEK: {}", n);

TripleVarBindingSet beforeBindingSet = n.getResultBindingSetInput();
boolean itChanged = ((AntSide) n).addResultBindingSetInput(current, translated);
TripleVarBindingSet afterBindingSet = n.getResultBindingSetInput();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public void validateCompleteBindings(GraphPattern pattern, BindingSet bindings)
* @param value
*/
public void validateValidBindingValue(String value) {
LOG.debug("validating {}", value);
LOG.trace("Validating binding value: {}", value);
try {
var node = SSE.parseNode(value, new PrefixMappingMem());
if (!(node.isLiteral() || node.isURI())) {
Expand All @@ -94,7 +94,6 @@ public void validateValidBindingValue(String value) {
LOG.debug("{} is not valid because Jena could not parse it", value);
throw new IllegalArgumentException(String.format("'%s' is not an unprefixed URI or literal.", value));
}
LOG.debug("{} is valid", value);
}

public void validateIncomingOutgoingAnswer(GraphPattern pattern, BindingSet incoming, BindingSet outgoing) {
Expand Down
Loading