Reduce log spam on failed logins

Failed logins already get logged higher up the call chain
This commit is contained in:
Bond_009
2023-08-21 19:09:32 +02:00
parent 388420faa2
commit a963bce9be
3 changed files with 16 additions and 15 deletions

View File

@@ -833,7 +833,7 @@ namespace Jellyfin.Server.Implementations.Users
}
catch (AuthenticationException ex)
{
_logger.LogError(ex, "Error authenticating with provider {Provider}", provider.Name);
_logger.LogDebug(ex, "Error authenticating with provider {Provider}", provider.Name);
return (username, false);
}