Merge pull request #9066 from barronpm/reduce-logspam

Change log level for bind address usage to debug
This commit is contained in:
Bond-009
2023-01-20 13:29:05 +01:00
committed by GitHub

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