You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Refactor logging and string formatting for ICE (#1668)
Replaced String.Format and concatenation with interpolated strings. Updated all logging to use structured logging with message templates and named parameters. Improved MDNS TLD comparison to use StringComparison.OrdinalIgnoreCase. Changes align with user preferences for structured logging and code clarity.
logger.LogWarning("RTP ICE channel has both "+nameof(MdnsGetAddresses)+" and "+nameof(MdnsGetAddresses)+" set. Only "+nameof(MdnsGetAddresses)+" will be used.");
2728
+
logger.LogWarning("RTP ICE channel has both {PrimaryResolver} and {SecondaryResolver} set. Only {SelectedResolver} will be used.",
0 commit comments