From 1ab5947e6103e17d89d90e87f8627603634ad7f9 Mon Sep 17 00:00:00 2001 From: Jicheng Lu Date: Tue, 2 Jul 2024 18:39:28 -0500 Subject: [PATCH] add error msg --- .../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 34f6b74a..ba01ce9d 100644 --- a/src/Infrastructure/BotSharp.Core/Files/Services/BotSharpFileService.Conversation.cs +++ b/src/Infrastructure/BotSharp.Core/Files/Services/BotSharpFileService.Conversation.cs @@ -218,7 +218,7 @@ public partial class BotSharpFileService } catch (Exception ex) { - _logger.LogWarning($"Error when saving conversation files: {ex.Message}"); + _logger.LogWarning($"Error when saving conversation files: {ex.Message}\r\n{ex.InnerException}"); return false; } }