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);
}

View File

@@ -69,8 +69,8 @@ firestore.data.importer.enabled=${GCP_FIRESTORE_IMPORTER_ENABLE}
# =========================================================
# LOGGING Configuration
# =========================================================
logging.level.root=INFO
logging.level.com.example=INFO
logging.level.root=${LOGGING_LEVEL_ROOT:INFO}
logging.level.com.example=${LOGGING_LEVEL_COM_EXAMPLE:INFO}
# =========================================================
# ConversationContext Configuration
# =========================================================

View File

@@ -72,3 +72,8 @@ firestore.data.importer.enabled=${GCP_FIRESTORE_IMPORTER_ENABLE}
# =========================================================
logging.level.root=${LOGGING_LEVEL_ROOT:INFO}
logging.level.com.example=${LOGGING_LEVEL_COM_EXAMPLE:INFO}
# =========================================================
# ConversationContext Configuration
# =========================================================
conversation.context.message.limit=${CONVERSATION_CONTEXT_MESSAGE_LIMIT}
conversation.context.days.limit=${CONVERSATION_CONTEXT_DAYS_LIMIT}

View File

@@ -72,3 +72,8 @@ firestore.data.importer.enabled=${GCP_FIRESTORE_IMPORTER_ENABLE}
# =========================================================
logging.level.root=${LOGGING_LEVEL_ROOT:INFO}
logging.level.com.example=${LOGGING_LEVEL_COM_EXAMPLE:INFO}
# =========================================================
# ConversationContext Configuration
# =========================================================
conversation.context.message.limit=${CONVERSATION_CONTEXT_MESSAGE_LIMIT}
conversation.context.days.limit=${CONVERSATION_CONTEXT_DAYS_LIMIT}