From e2ae5c20c2cabd0fe202b2dfeed0e676c6dfdca5 Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Sat, 15 Nov 2025 16:50:33 -0600 Subject: [PATCH] Log the DLive exception --- KfChatDotNetBot/Services/DLive.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/KfChatDotNetBot/Services/DLive.cs b/KfChatDotNetBot/Services/DLive.cs index bf54c9d..7ebc3a1 100644 --- a/KfChatDotNetBot/Services/DLive.cs +++ b/KfChatDotNetBot/Services/DLive.cs @@ -188,6 +188,7 @@ public class DLive(ChatBot kfChatBot) : IDisposable { logger.Error($"Bot shit itself while trying to check if {username} is live. JSON payload follows"); logger.Error(content.GetRawText); + logger.Error(e); throw; } }