Added documentation

This commit is contained in:
Thorsten Sommer 2026-01-24 21:14:32 +01:00
parent cbda2bdf64
commit c9421d52d2
Signed by untrusted user who does not match committer: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -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
}