Change log level for bind address usage to debug

Fixes #9024
This commit is contained in:
Patrick Barron 2023-01-10 19:58:54 -05:00
parent 9a2f2330b7
commit dfc5a4373f
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}
}