We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ced6539 commit 23ffd70Copy full SHA for 23ffd70
poem-demo/app/services/chat/ChatKnowledgeService.java
@@ -37,7 +37,7 @@ public ChatKnowledgeService() {
37
public ChatQueryResult executeIntent(ChatIntent intent) {
38
Objects.requireNonNull(intent, "intent must not be null");
39
String sparql = intent.toSparql();
40
- logger.debug("Executing SPARQL for intent {}: {}", intent.name(), sparql);
+ //logger.debug("Executing SPARQL for intent {}: {}", intent.name(), sparql);
41
Query query = QueryFactory.create(sparql);
42
43
try (QueryExecution execution = QueryExecutionFactory.create(query, POEMModel.getModel())) {
0 commit comments