From 098e7b7266123bca892b369d3e13be6fefeeba68 Mon Sep 17 00:00:00 2001 From: Pat Hartl Date: Thu, 13 Nov 2025 18:33:08 -0600 Subject: [PATCH] Fix log --- LANCommander.Server/Hubs/Chat.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LANCommander.Server/Hubs/Chat.cs b/LANCommander.Server/Hubs/Chat.cs index fe99e665..f9bb0f3e 100644 --- a/LANCommander.Server/Hubs/Chat.cs +++ b/LANCommander.Server/Hubs/Chat.cs @@ -19,7 +19,7 @@ public partial class RpcHub public async Task Chat_StartThreadAsync(string[] userIdentifiers) { - logger.LogDebug("Starting new thread with {ParticipantCount} participants}", userIdentifiers.Length); + logger.LogDebug("Starting new thread with {ParticipantCount} participants", userIdentifiers.Length); var thread = await chatService.StartThreadAsync();