From fc5ef286019af19e40d4ab522d159ea992a9849b Mon Sep 17 00:00:00 2001 From: Jicheng Lu <103353@smsassist.com> Date: Mon, 1 Jul 2024 15:29:03 -0500 Subject: [PATCH] add more error messages --- .../Files/Services/BotSharpFileService.Conversation.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Infrastructure/BotSharp.Core/Files/Services/BotSharpFileService.Conversation.cs b/src/Infrastructure/BotSharp.Core/Files/Services/BotSharpFileService.Conversation.cs index 894e603f..ee7476bc 100644 --- a/src/Infrastructure/BotSharp.Core/Files/Services/BotSharpFileService.Conversation.cs +++ b/src/Infrastructure/BotSharp.Core/Files/Services/BotSharpFileService.Conversation.cs @@ -116,7 +116,7 @@ public partial class BotSharpFileService } catch (Exception ex) { - _logger.LogWarning($"Error when reading conversation ({conversationId}) files: {ex.Message}"); + _logger.LogWarning($"Error when reading conversation ({conversationId}) files: {ex.Message}\r\n{ex.InnerException}\r\n{ex.StackTrace}"); } return files;