Small cleanup and logging fix

This commit is contained in:
Shadowghost
2022-07-20 09:50:41 +02:00
parent 748907b920
commit 2043a33f81
2 changed files with 1 additions and 3 deletions

View File

@@ -302,7 +302,7 @@ namespace Jellyfin.Server
bool flagged = false;
foreach (IPData netAdd in addresses)
{
_logger.LogInformation("Kestrel listening on {Address}", netAdd.Address == IPAddress.IPv6Any ? "All Addresses" : netAdd);
_logger.LogInformation("Kestrel listening on {Address}", netAdd.Address == IPAddress.IPv6Any ? "All Addresses" : netAdd.Address);
options.Listen(netAdd.Address, appHost.HttpPort);
if (appHost.ListenWithHttps)
{