- Fix links not showing up in webinterface

- Switch to debug logging
This commit is contained in:
Infi
2026-02-09 11:32:06 +01:00
parent 638ec1a211
commit 4341035c74
7 changed files with 14 additions and 7 deletions
+2 -2
View File
@@ -36,8 +36,8 @@ public class SSEConnection
if (!await ctx.Response.SendChunk(outgoingEvent.Build(), false, Token))
{
Plugin.Log.Information("SSE connection was unable to send new data");
Plugin.Log.Information($"Client disconnected: {ctx.Guid}");
Plugin.Log.Debug("SSE connection was unable to send new data");
Plugin.Log.Debug($"Client disconnected: {ctx.Guid}");
return;
}
}