UPDATE 14-Octubre

This commit is contained in:
PAVEL PALMA
2025-10-14 11:16:34 -06:00
parent aef0504b82
commit 582de0130e
5 changed files with 16 additions and 5 deletions

View File

@@ -126,6 +126,7 @@ public class DialogflowClientService {
// Build the final DetectIntentRequest Protobuf object
DetectIntentRequest detectIntentRequest = detectIntentRequestBuilder.build();
logger.debug("DetectIntentRequest created for session {}: {}", sessionId, detectIntentRequest);
return Mono.fromCallable(() -> {
logger.debug("Calling Dialogflow CX detectIntent for session: {}", sessionId);
return sessionsClient.detectIntent(detectIntentRequest);

View File

@@ -54,7 +54,7 @@ public class MemoryStoreConversationService {
return redisTemplate.opsForValue().get(sessionKey)
.doOnSuccess(session -> {
if (session != null) {
logger.info("Found existing session in Memorystore: {}", session);
logger.info("Found existing session in Memorystore: {}", sessionKey);
} else {
logger.info("No session found in Memorystore for key: {}", sessionKey);
}