diff options
| author | Bond-009 <bond.009@outlook.com> | 2023-01-20 13:29:05 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-20 13:29:05 +0100 |
| commit | e448797df06c1b3d645349ac65ab142e3785caae (patch) | |
| tree | 95d43a2c714d766739086244667c1b2252e6996b | |
| parent | 7ddcd76b61fcc7abd65f9a0e49ac948f3d14242c (diff) | |
| parent | dfc5a4373f15b0ed94ff3627fa1238ba40878113 (diff) | |
Merge pull request #9066 from barronpm/reduce-logspam
Change log level for bind address usage to debug
| -rw-r--r-- | Jellyfin.Networking/Manager/NetworkManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Networking/Manager/NetworkManager.cs b/Jellyfin.Networking/Manager/NetworkManager.cs index 5520e2f04..86989bfde 100644 --- a/Jellyfin.Networking/Manager/NetworkManager.cs +++ b/Jellyfin.Networking/Manager/NetworkManager.cs @@ -375,7 +375,7 @@ namespace Jellyfin.Networking.Manager if (MatchesPublishedServerUrl(source, isExternal, out string res, out port)) { - _logger.LogInformation("{Source}: Using BindAddress {Address}:{Port}", source, res, port); + _logger.LogDebug("{Source}: Using BindAddress {Address}:{Port}", source, res, port); return res; } } |
