From fe2fef55da345b16ab9a851e7187d954377bc0a8 Mon Sep 17 00:00:00 2001 From: Loretta Date: Sun, 19 Apr 2026 18:42:16 +0200 Subject: [PATCH] [LOADED_DOCS: NONE] Raise SignalR client log level to Warning Changed the minimum log level for Microsoft.Extensions.Logging in the SignalR client configuration from Debug to Warning. This reduces log verbosity by only outputting messages with a severity of Warning or higher. --- AyCode.Services/SignalRs/AcSignalRClientBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AyCode.Services/SignalRs/AcSignalRClientBase.cs b/AyCode.Services/SignalRs/AcSignalRClientBase.cs index e54b630..0516b0b 100644 --- a/AyCode.Services/SignalRs/AcSignalRClientBase.cs +++ b/AyCode.Services/SignalRs/AcSignalRClientBase.cs @@ -54,7 +54,7 @@ namespace AyCode.Services.SignalRs .ConfigureLogging(logging => { // alap minimális MS log level - logging.SetMinimumLevel(Microsoft.Extensions.Logging.LogLevel.Debug); + logging.SetMinimumLevel(Microsoft.Extensions.Logging.LogLevel.Warning); // regisztráljuk az AcLoggerProvider-t úgy, hogy visszaadja a meglévő Logger példányt logging.AddAcLogger(_ => Logger);