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:
parent
f839013b5b
commit
d35c7bd066
|
|
@ -97,7 +97,7 @@ public abstract class AcWebSignalRHubBase<TSignalRTags, TLogger>(IConfiguration
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Logger.Debug($"Not found dynamic method for the tag! {tagName}");
|
Logger.Warning($"Not found dynamic method for the tag! {tagName}");
|
||||||
notFoundCallback?.Invoke(tagName);
|
notFoundCallback?.Invoke(tagName);
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue