From c9421d52d2e0aeb25e26414e9f7c95d995a5e755 Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Sat, 24 Jan 2026 21:14:32 +0100 Subject: [PATCH] Added documentation --- app/MindWork AI Studio/Tools/Services/RustService.Log.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/MindWork AI Studio/Tools/Services/RustService.Log.cs b/app/MindWork AI Studio/Tools/Services/RustService.Log.cs index b8542ddd..c43f0ff9 100644 --- a/app/MindWork AI Studio/Tools/Services/RustService.Log.cs +++ b/app/MindWork AI Studio/Tools/Services/RustService.Log.cs @@ -32,6 +32,12 @@ public sealed partial class RustService } catch { + // + // We don't expect this to ever happen because the HTTP client cannot raise exceptions in fire-and-forget mode. + // This is because we don't await the task, so any exceptions thrown during the HTTP request are not propagated + // back to the caller. + // + Console.WriteLine("Failed to send log event to Rust service."); // Ignore errors to avoid log loops }