From 6e56d188f0995a7e2b0824fbc22b629d6b237015 Mon Sep 17 00:00:00 2001 From: Jicheng Lu Date: Tue, 3 Feb 2026 21:48:56 -0600 Subject: [PATCH 1/2] log membase error --- src/Plugins/BotSharp.Plugin.Membase/GraphDb/MembaseGraphDb.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Plugins/BotSharp.Plugin.Membase/GraphDb/MembaseGraphDb.cs b/src/Plugins/BotSharp.Plugin.Membase/GraphDb/MembaseGraphDb.cs index db31d329c..437755be4 100644 --- a/src/Plugins/BotSharp.Plugin.Membase/GraphDb/MembaseGraphDb.cs +++ b/src/Plugins/BotSharp.Plugin.Membase/GraphDb/MembaseGraphDb.cs @@ -48,7 +48,7 @@ public async Task ExecuteQueryAsync(string query, GraphQueryEx } catch (Exception ex) { - _logger.LogError($"Error when querying {Provider} graph db."); + _logger.LogError(ex, $"Error when querying {Provider} graph db."); return new(); } } From 25d6fc7656e2f5643e4bb8a82c25e202f2a85474 Mon Sep 17 00:00:00 2001 From: Jicheng Lu Date: Tue, 3 Feb 2026 21:49:59 -0600 Subject: [PATCH 2/2] change error msg --- src/Plugins/BotSharp.Plugin.Membase/GraphDb/MembaseGraphDb.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Plugins/BotSharp.Plugin.Membase/GraphDb/MembaseGraphDb.cs b/src/Plugins/BotSharp.Plugin.Membase/GraphDb/MembaseGraphDb.cs index 437755be4..e65958ea9 100644 --- a/src/Plugins/BotSharp.Plugin.Membase/GraphDb/MembaseGraphDb.cs +++ b/src/Plugins/BotSharp.Plugin.Membase/GraphDb/MembaseGraphDb.cs @@ -48,7 +48,7 @@ public async Task ExecuteQueryAsync(string query, GraphQueryEx } catch (Exception ex) { - _logger.LogError(ex, $"Error when querying {Provider} graph db."); + _logger.LogError(ex, $"Error when executing query in {Provider} graph db."); return new(); } }