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
commit e448797df0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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