From 98fbbcbff0d497c9cfcb73e6cb4d9f0d7e33e5a1 Mon Sep 17 00:00:00 2001 From: gnattu Date: Mon, 13 May 2024 10:10:31 +0800 Subject: [PATCH] Reduce log level for External Interface A lot of our users won't have external binding and this warning will only confuse them Signed-off-by: gnattu --- src/Jellyfin.Networking/Manager/NetworkManager.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Jellyfin.Networking/Manager/NetworkManager.cs b/src/Jellyfin.Networking/Manager/NetworkManager.cs index 1da44b0484..d5e7332343 100644 --- a/src/Jellyfin.Networking/Manager/NetworkManager.cs +++ b/src/Jellyfin.Networking/Manager/NetworkManager.cs @@ -1049,7 +1049,7 @@ public class NetworkManager : INetworkManager, IDisposable return true; } - _logger.LogWarning("{Source}: External request received, no matching external bind address found, trying internal addresses.", source); + _logger.LogDebug("{Source}: External request received, no matching external bind address found, trying internal addresses", source); } else { @@ -1087,7 +1087,7 @@ public class NetworkManager : INetworkManager, IDisposable if (extResult.Length == 0) { result = string.Empty; - _logger.LogWarning("{Source}: External request received, but no external interface found. Need to route through internal network.", source); + _logger.LogDebug("{Source}: External request received, but no external interface found. Need to route through internal network", source); return false; }