aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/EntryPoints/UdpServerEntryPoint.cs
diff options
context:
space:
mode:
authorShadowghost <Ghost_of_Stone@web.de>2022-10-15 20:57:02 +0200
committerShadowghost <Ghost_of_Stone@web.de>2022-10-16 10:22:11 +0200
commit26d79a5ce3639700131d0359c60c096cd0fbb093 (patch)
treef470d2133d296432cb293c15d53619833f0e3791 /Emby.Server.Implementations/EntryPoints/UdpServerEntryPoint.cs
parent87d0158a4af9d8c982736cbae77019fa6dd03126 (diff)
Properly name some bind address functions, cleanup logging
Diffstat (limited to 'Emby.Server.Implementations/EntryPoints/UdpServerEntryPoint.cs')
-rw-r--r--Emby.Server.Implementations/EntryPoints/UdpServerEntryPoint.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/EntryPoints/UdpServerEntryPoint.cs b/Emby.Server.Implementations/EntryPoints/UdpServerEntryPoint.cs
index 01a987b6a..c2ffaf1bd 100644
--- a/Emby.Server.Implementations/EntryPoints/UdpServerEntryPoint.cs
+++ b/Emby.Server.Implementations/EntryPoints/UdpServerEntryPoint.cs
@@ -92,7 +92,7 @@ namespace Emby.Server.Implementations.EntryPoints
}
var broadcastAddress = NetworkExtensions.GetBroadcastAddress(bindAddress.Subnet);
- _logger.LogDebug("Binding UDP server to {Address}", broadcastAddress.ToString());
+ _logger.LogDebug("Binding UDP server to {Address} on port {PortNumber}", broadcastAddress.ToString(), PortNumber);
_udpServers.Add(new UdpServer(_logger, _appHost, _config, broadcastAddress, PortNumber));
}