diff --git a/src/Infrastructure/BotSharp.Core/Conversations/Services/ConversationService.cs b/src/Infrastructure/BotSharp.Core/Conversations/Services/ConversationService.cs index cab3e3dab..94863ae16 100644 --- a/src/Infrastructure/BotSharp.Core/Conversations/Services/ConversationService.cs +++ b/src/Infrastructure/BotSharp.Core/Conversations/Services/ConversationService.cs @@ -138,6 +138,8 @@ public async Task NewConversation(Conversation sess) await hook.OnConversationInitialized(record); } + _logger.LogInformation($"Conversation created: {record.Id}, AgentId: {record.AgentId}, UserId: {record.UserId}, Channel: {record.Channel}"); + return record; }