aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShadowghost <Ghost_of_Stone@web.de>2022-07-20 09:50:41 +0200
committerShadowghost <Ghost_of_Stone@web.de>2022-07-20 09:50:41 +0200
commit2043a33f815d9a16aa819095e6310620ca4e72a2 (patch)
treed609626807921eef48f921a5e61e67752d0c63a8
parent748907b9208aa91adc2dcf08672ea8eda7ed7c9c (diff)
Small cleanup and logging fix
-rw-r--r--Emby.Dlna/Main/DlnaEntryPoint.cs2
-rw-r--r--Jellyfin.Server/Program.cs2
2 files changed, 1 insertions, 3 deletions
diff --git a/Emby.Dlna/Main/DlnaEntryPoint.cs b/Emby.Dlna/Main/DlnaEntryPoint.cs
index 01a9def0b..7bc761b71 100644
--- a/Emby.Dlna/Main/DlnaEntryPoint.cs
+++ b/Emby.Dlna/Main/DlnaEntryPoint.cs
@@ -3,10 +3,8 @@
#pragma warning disable CS1591
using System;
-using System.Collections.Generic;
using System.Globalization;
using System.Linq;
-using System.Net;
using System.Net.Http;
using System.Net.Sockets;
using System.Threading.Tasks;
diff --git a/Jellyfin.Server/Program.cs b/Jellyfin.Server/Program.cs
index 2bbc2546e..438994851 100644
--- a/Jellyfin.Server/Program.cs
+++ b/Jellyfin.Server/Program.cs
@@ -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)
{