Merge pull request #3533 from barronpm/user-login-casing

Make User Authentication Case-insensitive and remove EF Core Log spam
This commit is contained in:
Joshua M. Boniface
2020-07-12 19:32:51 -04:00
committed by GitHub
2 changed files with 5 additions and 7 deletions

View File

@@ -296,7 +296,7 @@ namespace Emby.Server.Implementations.Session
}
catch (DbUpdateConcurrencyException e)
{
_logger.LogWarning(e, "Error updating user's last activity date.");
_logger.LogDebug(e, "Error updating user's last activity date.");
}
}
}