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.
This commit is contained in:
Loretta 2025-12-22 14:37:44 +01:00
parent f839013b5b
commit d35c7bd066
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ public abstract class AcWebSignalRHubBase<TSignalRTags, TLogger>(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)