From d35c7bd0661170f8085cfc163a6ed4939c2cd049 Mon Sep 17 00:00:00 2001 From: Loretta Date: Mon, 22 Dec 2025 14:37:44 +0100 Subject: [PATCH] Increase log level for missing dynamic method to Warning Changed the log level from Debug to Warning when a dynamic method is not found for a given tag, making these events more visible in the logs and easier to monitor. --- AyCode.Services.Server/SignalRs/AcWebSignalRHubBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AyCode.Services.Server/SignalRs/AcWebSignalRHubBase.cs b/AyCode.Services.Server/SignalRs/AcWebSignalRHubBase.cs index 2cad984..6b9d5f2 100644 --- a/AyCode.Services.Server/SignalRs/AcWebSignalRHubBase.cs +++ b/AyCode.Services.Server/SignalRs/AcWebSignalRHubBase.cs @@ -97,7 +97,7 @@ public abstract class AcWebSignalRHubBase(IConfiguration return; } - Logger.Debug($"Not found dynamic method for the tag! {tagName}"); + Logger.Warning($"Not found dynamic method for the tag! {tagName}"); notFoundCallback?.Invoke(tagName); } catch (Exception ex)