From 2a6df341026b1b515511effc5b4fa0cb59a041aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eivind=20Sj=C3=B8vold?= Date: Thu, 12 Mar 2026 15:10:49 +0100 Subject: [PATCH] Set loglevel for signalR to error --- frontend/src/components/Contexts/SignalRContext.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/components/Contexts/SignalRContext.tsx b/frontend/src/components/Contexts/SignalRContext.tsx index e04d66e9f..6ba5c79e4 100644 --- a/frontend/src/components/Contexts/SignalRContext.tsx +++ b/frontend/src/components/Contexts/SignalRContext.tsx @@ -76,6 +76,7 @@ export const SignalRProvider: FC = ({ children }) => { signalR.HttpTransportType.LongPolling, }) .withAutomaticReconnect() + .configureLogging(signalR.LogLevel.Error) .build() newConnection.onclose((error) => {